]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/types.rs
Auto merge of #3511 - phansch:remove_allow_doc_markdown, r=phansch
[rust.git] / clippy_lints / src / types.rs
1 // Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution.
3 //
4 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7 // option. This file may not be copied, modified, or distributed
8 // except according to those terms.
9
10
11 #![allow(clippy::default_hash_types)]
12
13 use crate::consts::{constant, Constant};
14 use crate::reexport::*;
15 use crate::rustc::hir;
16 use crate::rustc::hir::intravisit::{walk_body, walk_expr, walk_ty, FnKind, NestedVisitorMap, Visitor};
17 use crate::rustc::hir::*;
18 use crate::rustc::lint::{in_external_macro, LateContext, LateLintPass, LintArray, LintContext, LintPass};
19 use crate::rustc::ty::layout::LayoutOf;
20 use crate::rustc::ty::{self, Ty, TyCtxt, TypeckTables};
21 use crate::rustc::{declare_tool_lint, lint_array};
22 use crate::rustc_errors::Applicability;
23 use crate::rustc_target::spec::abi::Abi;
24 use crate::rustc_typeck::hir_ty_to_ty;
25 use crate::syntax::ast::{FloatTy, IntTy, UintTy};
26 use crate::syntax::errors::DiagnosticBuilder;
27 use crate::syntax::source_map::Span;
28 use crate::utils::paths;
29 use crate::utils::{
30     clip, comparisons, differing_macro_contexts, higher, in_constant, in_macro, int_bits, last_path_segment,
31     match_def_path, match_path, multispan_sugg, opt_def_id, same_tys, sext, snippet, snippet_opt,
32     snippet_with_applicability, span_help_and_lint, span_lint, span_lint_and_sugg, span_lint_and_then, unsext,
33     AbsolutePathBuffer,
34 };
35 use if_chain::if_chain;
36 use std::borrow::Cow;
37 use std::cmp::Ordering;
38 use std::collections::BTreeMap;
39
40 /// Handles all the linting of funky types
41 pub struct TypePass;
42
43 /// **What it does:** Checks for use of `Box<Vec<_>>` anywhere in the code.
44 ///
45 /// **Why is this bad?** `Vec` already keeps its contents in a separate area on
46 /// the heap. So if you `Box` it, you just add another level of indirection
47 /// without any benefit whatsoever.
48 ///
49 /// **Known problems:** None.
50 ///
51 /// **Example:**
52 /// ```rust
53 /// struct X {
54 ///     values: Box<Vec<Foo>>,
55 /// }
56 /// ```
57 ///
58 /// Better:
59 ///
60 /// ```rust
61 /// struct X {
62 ///     values: Vec<Foo>,
63 /// }
64 /// ```
65 declare_clippy_lint! {
66     pub BOX_VEC,
67     perf,
68     "usage of `Box<Vec<T>>`, vector elements are already on the heap"
69 }
70
71 /// **What it does:** Checks for use of `Option<Option<_>>` in function signatures and type
72 /// definitions
73 ///
74 /// **Why is this bad?** `Option<_>` represents an optional value. `Option<Option<_>>`
75 /// represents an optional optional value which is logically the same thing as an optional
76 /// value but has an unneeded extra level of wrapping.
77 ///
78 /// **Known problems:** None.
79 ///
80 /// **Example**
81 /// ```rust
82 /// fn x() -> Option<Option<u32>> {
83 ///     None
84 /// }
85 declare_clippy_lint! {
86     pub OPTION_OPTION,
87     complexity,
88     "usage of `Option<Option<T>>`"
89 }
90
91 /// **What it does:** Checks for usage of any `LinkedList`, suggesting to use a
92 /// `Vec` or a `VecDeque` (formerly called `RingBuf`).
93 ///
94 /// **Why is this bad?** Gankro says:
95 ///
96 /// > The TL;DR of `LinkedList` is that it's built on a massive amount of
97 /// pointers and indirection.
98 /// > It wastes memory, it has terrible cache locality, and is all-around slow.
99 /// `RingBuf`, while
100 /// > "only" amortized for push/pop, should be faster in the general case for
101 /// almost every possible
102 /// > workload, and isn't even amortized at all if you can predict the capacity
103 /// you need.
104 /// >
105 /// > `LinkedList`s are only really good if you're doing a lot of merging or
106 /// splitting of lists.
107 /// > This is because they can just mangle some pointers instead of actually
108 /// copying the data. Even
109 /// > if you're doing a lot of insertion in the middle of the list, `RingBuf`
110 /// can still be better
111 /// > because of how expensive it is to seek to the middle of a `LinkedList`.
112 ///
113 /// **Known problems:** False positives – the instances where using a
114 /// `LinkedList` makes sense are few and far between, but they can still happen.
115 ///
116 /// **Example:**
117 /// ```rust
118 /// let x = LinkedList::new();
119 /// ```
120 declare_clippy_lint! {
121     pub LINKEDLIST,
122     pedantic,
123     "usage of LinkedList, usually a vector is faster, or a more specialized data structure like a VecDeque"
124 }
125
126 /// **What it does:** Checks for use of `&Box<T>` anywhere in the code.
127 ///
128 /// **Why is this bad?** Any `&Box<T>` can also be a `&T`, which is more
129 /// general.
130 ///
131 /// **Known problems:** None.
132 ///
133 /// **Example:**
134 /// ```rust
135 /// fn foo(bar: &Box<T>) { ... }
136 /// ```
137 ///
138 /// Better:
139 ///
140 /// ```rust
141 /// fn foo(bar: &T) { ... }
142 /// ```
143 declare_clippy_lint! {
144     pub BORROWED_BOX,
145     complexity,
146     "a borrow of a boxed type"
147 }
148
149 impl LintPass for TypePass {
150     fn get_lints(&self) -> LintArray {
151         lint_array!(BOX_VEC, OPTION_OPTION, LINKEDLIST, BORROWED_BOX)
152     }
153 }
154
155 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for TypePass {
156     fn check_fn(&mut self, cx: &LateContext<'_, '_>, _: FnKind<'_>, decl: &FnDecl, _: &Body, _: Span, id: NodeId) {
157         // skip trait implementations, see #605
158         if let Some(hir::Node::Item(item)) = cx.tcx.hir().find(cx.tcx.hir().get_parent(id)) {
159             if let ItemKind::Impl(_, _, _, _, Some(..), _, _) = item.node {
160                 return;
161             }
162         }
163
164         check_fn_decl(cx, decl);
165     }
166
167     fn check_struct_field(&mut self, cx: &LateContext<'_, '_>, field: &StructField) {
168         check_ty(cx, &field.ty, false);
169     }
170
171     fn check_trait_item(&mut self, cx: &LateContext<'_, '_>, item: &TraitItem) {
172         match item.node {
173             TraitItemKind::Const(ref ty, _) | TraitItemKind::Type(_, Some(ref ty)) => check_ty(cx, ty, false),
174             TraitItemKind::Method(ref sig, _) => check_fn_decl(cx, &sig.decl),
175             _ => (),
176         }
177     }
178
179     fn check_local(&mut self, cx: &LateContext<'_, '_>, local: &Local) {
180         if let Some(ref ty) = local.ty {
181             check_ty(cx, ty, true);
182         }
183     }
184 }
185
186 fn check_fn_decl(cx: &LateContext<'_, '_>, decl: &FnDecl) {
187     for input in &decl.inputs {
188         check_ty(cx, input, false);
189     }
190
191     if let FunctionRetTy::Return(ref ty) = decl.output {
192         check_ty(cx, ty, false);
193     }
194 }
195
196 /// Check if `qpath` has last segment with type parameter matching `path`
197 fn match_type_parameter(cx: &LateContext<'_, '_>, qpath: &QPath, path: &[&str]) -> bool {
198     let last = last_path_segment(qpath);
199     if_chain! {
200         if let Some(ref params) = last.args;
201         if !params.parenthesized;
202         if let Some(ty) = params.args.iter().find_map(|arg| match arg {
203             GenericArg::Type(ty) => Some(ty),
204             GenericArg::Lifetime(_) => None,
205         });
206         if let TyKind::Path(ref qpath) = ty.node;
207         if let Some(did) = opt_def_id(cx.tables.qpath_def(qpath, cx.tcx.hir().node_to_hir_id(ty.id)));
208         if match_def_path(cx.tcx, did, path);
209         then {
210             return true;
211         }
212     }
213     false
214 }
215
216 /// Recursively check for `TypePass` lints in the given type. Stop at the first
217 /// lint found.
218 ///
219 /// The parameter `is_local` distinguishes the context of the type; types from
220 /// local bindings should only be checked for the `BORROWED_BOX` lint.
221 fn check_ty(cx: &LateContext<'_, '_>, ast_ty: &hir::Ty, is_local: bool) {
222     if in_macro(ast_ty.span) {
223         return;
224     }
225     match ast_ty.node {
226         TyKind::Path(ref qpath) if !is_local => {
227             let hir_id = cx.tcx.hir().node_to_hir_id(ast_ty.id);
228             let def = cx.tables.qpath_def(qpath, hir_id);
229             if let Some(def_id) = opt_def_id(def) {
230                 if Some(def_id) == cx.tcx.lang_items().owned_box() {
231                     if match_type_parameter(cx, qpath, &paths::VEC) {
232                         span_help_and_lint(
233                             cx,
234                             BOX_VEC,
235                             ast_ty.span,
236                             "you seem to be trying to use `Box<Vec<T>>`. Consider using just `Vec<T>`",
237                             "`Vec<T>` is already on the heap, `Box<Vec<T>>` makes an extra allocation.",
238                         );
239                         return; // don't recurse into the type
240                     }
241                 } else if match_def_path(cx.tcx, def_id, &paths::OPTION) {
242                     if match_type_parameter(cx, qpath, &paths::OPTION) {
243                         span_lint(
244                             cx,
245                             OPTION_OPTION,
246                             ast_ty.span,
247                             "consider using `Option<T>` instead of `Option<Option<T>>` or a custom \
248                              enum if you need to distinguish all 3 cases",
249                         );
250                         return; // don't recurse into the type
251                     }
252                 } else if match_def_path(cx.tcx, def_id, &paths::LINKED_LIST) {
253                     span_help_and_lint(
254                         cx,
255                         LINKEDLIST,
256                         ast_ty.span,
257                         "I see you're using a LinkedList! Perhaps you meant some other data structure?",
258                         "a VecDeque might work",
259                     );
260                     return; // don't recurse into the type
261                 }
262             }
263             match *qpath {
264                 QPath::Resolved(Some(ref ty), ref p) => {
265                     check_ty(cx, ty, is_local);
266                     for ty in p.segments.iter().flat_map(|seg| {
267                         seg.args
268                             .as_ref()
269                             .map_or_else(|| [].iter(), |params| params.args.iter())
270                             .filter_map(|arg| match arg {
271                                 GenericArg::Type(ty) => Some(ty),
272                                 GenericArg::Lifetime(_) => None,
273                             })
274                     }) {
275                         check_ty(cx, ty, is_local);
276                     }
277                 },
278                 QPath::Resolved(None, ref p) => {
279                     for ty in p.segments.iter().flat_map(|seg| {
280                         seg.args
281                             .as_ref()
282                             .map_or_else(|| [].iter(), |params| params.args.iter())
283                             .filter_map(|arg| match arg {
284                                 GenericArg::Type(ty) => Some(ty),
285                                 GenericArg::Lifetime(_) => None,
286                             })
287                     }) {
288                         check_ty(cx, ty, is_local);
289                     }
290                 },
291                 QPath::TypeRelative(ref ty, ref seg) => {
292                     check_ty(cx, ty, is_local);
293                     if let Some(ref params) = seg.args {
294                         for ty in params.args.iter().filter_map(|arg| match arg {
295                             GenericArg::Type(ty) => Some(ty),
296                             GenericArg::Lifetime(_) => None,
297                         }) {
298                             check_ty(cx, ty, is_local);
299                         }
300                     }
301                 },
302             }
303         },
304         TyKind::Rptr(ref lt, ref mut_ty) => check_ty_rptr(cx, ast_ty, is_local, lt, mut_ty),
305         // recurse
306         TyKind::Slice(ref ty) | TyKind::Array(ref ty, _) | TyKind::Ptr(MutTy { ref ty, .. }) => {
307             check_ty(cx, ty, is_local)
308         },
309         TyKind::Tup(ref tys) => {
310             for ty in tys {
311                 check_ty(cx, ty, is_local);
312             }
313         },
314         _ => {},
315     }
316 }
317
318 fn check_ty_rptr(cx: &LateContext<'_, '_>, ast_ty: &hir::Ty, is_local: bool, lt: &Lifetime, mut_ty: &MutTy) {
319     match mut_ty.ty.node {
320         TyKind::Path(ref qpath) => {
321             let hir_id = cx.tcx.hir().node_to_hir_id(mut_ty.ty.id);
322             let def = cx.tables.qpath_def(qpath, hir_id);
323             if_chain! {
324                 if let Some(def_id) = opt_def_id(def);
325                 if Some(def_id) == cx.tcx.lang_items().owned_box();
326                 if let QPath::Resolved(None, ref path) = *qpath;
327                 if let [ref bx] = *path.segments;
328                 if let Some(ref params) = bx.args;
329                 if !params.parenthesized;
330                 if let Some(inner) = params.args.iter().find_map(|arg| match arg {
331                     GenericArg::Type(ty) => Some(ty),
332                     GenericArg::Lifetime(_) => None,
333                 });
334                 then {
335                     if is_any_trait(inner) {
336                         // Ignore `Box<Any>` types, see #1884 for details.
337                         return;
338                     }
339
340                     let ltopt = if lt.is_elided() {
341                         String::new()
342                     } else {
343                         format!("{} ", lt.name.ident().as_str())
344                     };
345                     let mutopt = if mut_ty.mutbl == Mutability::MutMutable {
346                         "mut "
347                     } else {
348                         ""
349                     };
350                     let mut applicability = Applicability::MachineApplicable;
351                     span_lint_and_sugg(
352                         cx,
353                         BORROWED_BOX,
354                         ast_ty.span,
355                         "you seem to be trying to use `&Box<T>`. Consider using just `&T`",
356                         "try",
357                         format!(
358                             "&{}{}{}",
359                             ltopt,
360                             mutopt,
361                             &snippet_with_applicability(cx, inner.span, "..", &mut applicability)
362                         ),
363                         Applicability::Unspecified,
364                     );
365                     return; // don't recurse into the type
366                 }
367             };
368             check_ty(cx, &mut_ty.ty, is_local);
369         },
370         _ => check_ty(cx, &mut_ty.ty, is_local),
371     }
372 }
373
374 // Returns true if given type is `Any` trait.
375 fn is_any_trait(t: &hir::Ty) -> bool {
376     if_chain! {
377         if let TyKind::TraitObject(ref traits, _) = t.node;
378         if traits.len() >= 1;
379         // Only Send/Sync can be used as additional traits, so it is enough to
380         // check only the first trait.
381         if match_path(&traits[0].trait_ref.path, &paths::ANY_TRAIT);
382         then {
383             return true;
384         }
385     }
386
387     false
388 }
389
390 pub struct LetPass;
391
392 /// **What it does:** Checks for binding a unit value.
393 ///
394 /// **Why is this bad?** A unit value cannot usefully be used anywhere. So
395 /// binding one is kind of pointless.
396 ///
397 /// **Known problems:** None.
398 ///
399 /// **Example:**
400 /// ```rust
401 /// let x = {
402 ///     1;
403 /// };
404 /// ```
405 declare_clippy_lint! {
406     pub LET_UNIT_VALUE,
407     style,
408     "creating a let binding to a value of unit type, which usually can't be used afterwards"
409 }
410
411 fn check_let_unit(cx: &LateContext<'_, '_>, decl: &Decl) {
412     if let DeclKind::Local(ref local) = decl.node {
413         if is_unit(cx.tables.pat_ty(&local.pat)) {
414             if in_external_macro(cx.sess(), decl.span) || in_macro(local.pat.span) {
415                 return;
416             }
417             if higher::is_from_for_desugar(decl) {
418                 return;
419             }
420             span_lint(
421                 cx,
422                 LET_UNIT_VALUE,
423                 decl.span,
424                 &format!(
425                     "this let-binding has unit value. Consider omitting `let {} =`",
426                     snippet(cx, local.pat.span, "..")
427                 ),
428             );
429         }
430     }
431 }
432
433 impl LintPass for LetPass {
434     fn get_lints(&self) -> LintArray {
435         lint_array!(LET_UNIT_VALUE)
436     }
437 }
438
439 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for LetPass {
440     fn check_decl(&mut self, cx: &LateContext<'a, 'tcx>, decl: &'tcx Decl) {
441         check_let_unit(cx, decl)
442     }
443 }
444
445 /// **What it does:** Checks for comparisons to unit.
446 ///
447 /// **Why is this bad?** Unit is always equal to itself, and thus is just a
448 /// clumsily written constant. Mostly this happens when someone accidentally
449 /// adds semicolons at the end of the operands.
450 ///
451 /// **Known problems:** None.
452 ///
453 /// **Example:**
454 /// ```rust
455 /// if {
456 ///     foo();
457 /// } == {
458 ///     bar();
459 /// } {
460 ///     baz();
461 /// }
462 /// ```
463 /// is equal to
464 /// ```rust
465 /// {
466 ///     foo();
467 ///     bar();
468 ///     baz();
469 /// }
470 /// ```
471 declare_clippy_lint! {
472     pub UNIT_CMP,
473     correctness,
474     "comparing unit values"
475 }
476
477 pub struct UnitCmp;
478
479 impl LintPass for UnitCmp {
480     fn get_lints(&self) -> LintArray {
481         lint_array!(UNIT_CMP)
482     }
483 }
484
485 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnitCmp {
486     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
487         if in_macro(expr.span) {
488             return;
489         }
490         if let ExprKind::Binary(ref cmp, ref left, _) = expr.node {
491             let op = cmp.node;
492             if op.is_comparison() && is_unit(cx.tables.expr_ty(left)) {
493                 let result = match op {
494                     BinOpKind::Eq | BinOpKind::Le | BinOpKind::Ge => "true",
495                     _ => "false",
496                 };
497                 span_lint(
498                     cx,
499                     UNIT_CMP,
500                     expr.span,
501                     &format!(
502                         "{}-comparison of unit values detected. This will always be {}",
503                         op.as_str(),
504                         result
505                     ),
506                 );
507             }
508         }
509     }
510 }
511
512 /// **What it does:** Checks for passing a unit value as an argument to a function without using a
513 /// unit literal (`()`).
514 ///
515 /// **Why is this bad?** This is likely the result of an accidental semicolon.
516 ///
517 /// **Known problems:** None.
518 ///
519 /// **Example:**
520 /// ```rust
521 /// foo({
522 ///     let a = bar();
523 ///     baz(a);
524 /// })
525 /// ```
526 declare_clippy_lint! {
527     pub UNIT_ARG,
528     complexity,
529     "passing unit to a function"
530 }
531
532 pub struct UnitArg;
533
534 impl LintPass for UnitArg {
535     fn get_lints(&self) -> LintArray {
536         lint_array!(UNIT_ARG)
537     }
538 }
539
540 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnitArg {
541     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
542         if in_macro(expr.span) {
543             return;
544         }
545         match expr.node {
546             ExprKind::Call(_, ref args) | ExprKind::MethodCall(_, _, ref args) => {
547                 for arg in args {
548                     if is_unit(cx.tables.expr_ty(arg)) && !is_unit_literal(arg) {
549                         let map = &cx.tcx.hir();
550                         // apparently stuff in the desugaring of `?` can trigger this
551                         // so check for that here
552                         // only the calls to `Try::from_error` is marked as desugared,
553                         // so we need to check both the current Expr and its parent.
554                         if !is_questionmark_desugar_marked_call(expr) {
555                             if_chain! {
556                                 let opt_parent_node = map.find(map.get_parent_node(expr.id));
557                                 if let Some(hir::Node::Expr(parent_expr)) = opt_parent_node;
558                                 if is_questionmark_desugar_marked_call(parent_expr);
559                                 then {}
560                                 else {
561                                     // `expr` and `parent_expr` where _both_ not from
562                                     // desugaring `?`, so lint
563                                     span_lint_and_sugg(
564                                         cx,
565                                         UNIT_ARG,
566                                         arg.span,
567                                         "passing a unit value to a function",
568                                         "if you intended to pass a unit value, use a unit literal instead",
569                                         "()".to_string(),
570                                         Applicability::MachineApplicable,
571                                     );
572                                 }
573                             }
574                         }
575                     }
576                 }
577             },
578             _ => (),
579         }
580     }
581 }
582
583 fn is_questionmark_desugar_marked_call(expr: &Expr) -> bool {
584     use crate::syntax_pos::hygiene::CompilerDesugaringKind;
585     if let ExprKind::Call(ref callee, _) = expr.node {
586         callee.span.is_compiler_desugaring(CompilerDesugaringKind::QuestionMark)
587     } else {
588         false
589     }
590 }
591
592 fn is_unit(ty: Ty<'_>) -> bool {
593     match ty.sty {
594         ty::Tuple(slice) if slice.is_empty() => true,
595         _ => false,
596     }
597 }
598
599 fn is_unit_literal(expr: &Expr) -> bool {
600     match expr.node {
601         ExprKind::Tup(ref slice) if slice.is_empty() => true,
602         _ => false,
603     }
604 }
605
606 pub struct CastPass;
607
608 /// **What it does:** Checks for casts from any numerical to a float type where
609 /// the receiving type cannot store all values from the original type without
610 /// rounding errors. This possible rounding is to be expected, so this lint is
611 /// `Allow` by default.
612 ///
613 /// Basically, this warns on casting any integer with 32 or more bits to `f32`
614 /// or any 64-bit integer to `f64`.
615 ///
616 /// **Why is this bad?** It's not bad at all. But in some applications it can be
617 /// helpful to know where precision loss can take place. This lint can help find
618 /// those places in the code.
619 ///
620 /// **Known problems:** None.
621 ///
622 /// **Example:**
623 /// ```rust
624 /// let x = u64::MAX;
625 /// x as f64
626 /// ```
627 declare_clippy_lint! {
628     pub CAST_PRECISION_LOSS,
629     pedantic,
630     "casts that cause loss of precision, e.g. `x as f32` where `x: u64`"
631 }
632
633 /// **What it does:** Checks for casts from a signed to an unsigned numerical
634 /// type. In this case, negative values wrap around to large positive values,
635 /// which can be quite surprising in practice. However, as the cast works as
636 /// defined, this lint is `Allow` by default.
637 ///
638 /// **Why is this bad?** Possibly surprising results. You can activate this lint
639 /// as a one-time check to see where numerical wrapping can arise.
640 ///
641 /// **Known problems:** None.
642 ///
643 /// **Example:**
644 /// ```rust
645 /// let y: i8 = -1;
646 /// y as u128 // will return 18446744073709551615
647 /// ```
648 declare_clippy_lint! {
649     pub CAST_SIGN_LOSS,
650     pedantic,
651     "casts from signed types to unsigned types, e.g. `x as u32` where `x: i32`"
652 }
653
654 /// **What it does:** Checks for on casts between numerical types that may
655 /// truncate large values. This is expected behavior, so the cast is `Allow` by
656 /// default.
657 ///
658 /// **Why is this bad?** In some problem domains, it is good practice to avoid
659 /// truncation. This lint can be activated to help assess where additional
660 /// checks could be beneficial.
661 ///
662 /// **Known problems:** None.
663 ///
664 /// **Example:**
665 /// ```rust
666 /// fn as_u8(x: u64) -> u8 {
667 ///     x as u8
668 /// }
669 /// ```
670 declare_clippy_lint! {
671     pub CAST_POSSIBLE_TRUNCATION,
672     pedantic,
673     "casts that may cause truncation of the value, e.g. `x as u8` where `x: u32`, or `x as i32` where `x: f32`"
674 }
675
676 /// **What it does:** Checks for casts from an unsigned type to a signed type of
677 /// the same size. Performing such a cast is a 'no-op' for the compiler,
678 /// i.e. nothing is changed at the bit level, and the binary representation of
679 /// the value is reinterpreted. This can cause wrapping if the value is too big
680 /// for the target signed type. However, the cast works as defined, so this lint
681 /// is `Allow` by default.
682 ///
683 /// **Why is this bad?** While such a cast is not bad in itself, the results can
684 /// be surprising when this is not the intended behavior, as demonstrated by the
685 /// example below.
686 ///
687 /// **Known problems:** None.
688 ///
689 /// **Example:**
690 /// ```rust
691 /// u32::MAX as i32 // will yield a value of `-1`
692 /// ```
693 declare_clippy_lint! {
694     pub CAST_POSSIBLE_WRAP,
695     pedantic,
696     "casts that may cause wrapping around the value, e.g. `x as i32` where `x: u32` and `x > i32::MAX`"
697 }
698
699 /// **What it does:** Checks for on casts between numerical types that may
700 /// be replaced by safe conversion functions.
701 ///
702 /// **Why is this bad?** Rust's `as` keyword will perform many kinds of
703 /// conversions, including silently lossy conversions. Conversion functions such
704 /// as `i32::from` will only perform lossless conversions. Using the conversion
705 /// functions prevents conversions from turning into silent lossy conversions if
706 /// the types of the input expressions ever change, and make it easier for
707 /// people reading the code to know that the conversion is lossless.
708 ///
709 /// **Known problems:** None.
710 ///
711 /// **Example:**
712 /// ```rust
713 /// fn as_u64(x: u8) -> u64 {
714 ///     x as u64
715 /// }
716 /// ```
717 ///
718 /// Using `::from` would look like this:
719 ///
720 /// ```rust
721 /// fn as_u64(x: u8) -> u64 {
722 ///     u64::from(x)
723 /// }
724 /// ```
725 declare_clippy_lint! {
726     pub CAST_LOSSLESS,
727     complexity,
728     "casts using `as` that are known to be lossless, e.g. `x as u64` where `x: u8`"
729 }
730
731 /// **What it does:** Checks for casts to the same type.
732 ///
733 /// **Why is this bad?** It's just unnecessary.
734 ///
735 /// **Known problems:** None.
736 ///
737 /// **Example:**
738 /// ```rust
739 /// let _ = 2i32 as i32
740 /// ```
741 declare_clippy_lint! {
742     pub UNNECESSARY_CAST,
743     complexity,
744     "cast to the same type, e.g. `x as i32` where `x: i32`"
745 }
746
747 /// **What it does:** Checks for casts from a less-strictly-aligned pointer to a
748 /// more-strictly-aligned pointer
749 ///
750 /// **Why is this bad?** Dereferencing the resulting pointer may be undefined
751 /// behavior.
752 ///
753 /// **Known problems:** None.
754 ///
755 /// **Example:**
756 /// ```rust
757 /// let _ = (&1u8 as *const u8) as *const u16;
758 /// let _ = (&mut 1u8 as *mut u8) as *mut u16;
759 /// ```
760 declare_clippy_lint! {
761     pub CAST_PTR_ALIGNMENT,
762     correctness,
763     "cast from a pointer to a more-strictly-aligned pointer"
764 }
765
766 /// **What it does:** Checks for casts of function pointers to something other than usize
767 ///
768 /// **Why is this bad?**
769 /// Casting a function pointer to anything other than usize/isize is not portable across
770 /// architectures, because you end up losing bits if the target type is too small or end up with a
771 /// bunch of extra bits that waste space and add more instructions to the final binary than
772 /// strictly necessary for the problem
773 ///
774 /// Casting to isize also doesn't make sense since there are no signed addresses.
775 ///
776 /// **Example**
777 ///
778 /// ```rust
779 /// // Bad
780 /// fn fun() -> i32 {}
781 /// let a = fun as i64;
782 ///
783 /// // Good
784 /// fn fun2() -> i32 {}
785 /// let a = fun2 as usize;
786 /// ```
787 declare_clippy_lint! {
788     pub FN_TO_NUMERIC_CAST,
789     style,
790     "casting a function pointer to a numeric type other than usize"
791 }
792
793 /// **What it does:** Checks for casts of a function pointer to a numeric type not wide enough to
794 /// store address.
795 ///
796 /// **Why is this bad?**
797 /// Such a cast discards some bits of the function's address. If this is intended, it would be more
798 /// clearly expressed by casting to usize first, then casting the usize to the intended type (with
799 /// a comment) to perform the truncation.
800 ///
801 /// **Example**
802 ///
803 /// ```rust
804 /// // Bad
805 /// fn fn1() -> i16 {
806 ///     1
807 /// };
808 /// let _ = fn1 as i32;
809 ///
810 /// // Better: Cast to usize first, then comment with the reason for the truncation
811 /// fn fn2() -> i16 {
812 ///     1
813 /// };
814 /// let fn_ptr = fn2 as usize;
815 /// let fn_ptr_truncated = fn_ptr as i32;
816 /// ```
817 declare_clippy_lint! {
818     pub FN_TO_NUMERIC_CAST_WITH_TRUNCATION,
819     style,
820     "casting a function pointer to a numeric type not wide enough to store the address"
821 }
822
823 /// Returns the size in bits of an integral type.
824 /// Will return 0 if the type is not an int or uint variant
825 fn int_ty_to_nbits(typ: Ty<'_>, tcx: TyCtxt<'_, '_, '_>) -> u64 {
826     match typ.sty {
827         ty::Int(i) => match i {
828             IntTy::Isize => tcx.data_layout.pointer_size.bits(),
829             IntTy::I8 => 8,
830             IntTy::I16 => 16,
831             IntTy::I32 => 32,
832             IntTy::I64 => 64,
833             IntTy::I128 => 128,
834         },
835         ty::Uint(i) => match i {
836             UintTy::Usize => tcx.data_layout.pointer_size.bits(),
837             UintTy::U8 => 8,
838             UintTy::U16 => 16,
839             UintTy::U32 => 32,
840             UintTy::U64 => 64,
841             UintTy::U128 => 128,
842         },
843         _ => 0,
844     }
845 }
846
847 fn is_isize_or_usize(typ: Ty<'_>) -> bool {
848     match typ.sty {
849         ty::Int(IntTy::Isize) | ty::Uint(UintTy::Usize) => true,
850         _ => false,
851     }
852 }
853
854 fn span_precision_loss_lint(cx: &LateContext<'_, '_>, expr: &Expr, cast_from: Ty<'_>, cast_to_f64: bool) {
855     let mantissa_nbits = if cast_to_f64 { 52 } else { 23 };
856     let arch_dependent = is_isize_or_usize(cast_from) && cast_to_f64;
857     let arch_dependent_str = "on targets with 64-bit wide pointers ";
858     let from_nbits_str = if arch_dependent {
859         "64".to_owned()
860     } else if is_isize_or_usize(cast_from) {
861         "32 or 64".to_owned()
862     } else {
863         int_ty_to_nbits(cast_from, cx.tcx).to_string()
864     };
865     span_lint(
866         cx,
867         CAST_PRECISION_LOSS,
868         expr.span,
869         &format!(
870             "casting {0} to {1} causes a loss of precision {2}({0} is {3} bits wide, but {1}'s mantissa \
871              is only {4} bits wide)",
872             cast_from,
873             if cast_to_f64 { "f64" } else { "f32" },
874             if arch_dependent { arch_dependent_str } else { "" },
875             from_nbits_str,
876             mantissa_nbits
877         ),
878     );
879 }
880
881 fn should_strip_parens(op: &Expr, snip: &str) -> bool {
882     if let ExprKind::Binary(_, _, _) = op.node {
883         if snip.starts_with('(') && snip.ends_with(')') {
884             return true;
885         }
886     }
887     false
888 }
889
890 fn span_lossless_lint(cx: &LateContext<'_, '_>, expr: &Expr, op: &Expr, cast_from: Ty<'_>, cast_to: Ty<'_>) {
891     // Do not suggest using From in consts/statics until it is valid to do so (see #2267).
892     if in_constant(cx, expr.id) {
893         return;
894     }
895     // The suggestion is to use a function call, so if the original expression
896     // has parens on the outside, they are no longer needed.
897     let mut applicability = Applicability::MachineApplicable;
898     let opt = snippet_opt(cx, op.span);
899     let sugg = if let Some(ref snip) = opt {
900         if should_strip_parens(op, snip) {
901             &snip[1..snip.len() - 1]
902         } else {
903             snip.as_str()
904         }
905     } else {
906         applicability = Applicability::HasPlaceholders;
907         ".."
908     };
909
910     span_lint_and_sugg(
911         cx,
912         CAST_LOSSLESS,
913         expr.span,
914         &format!(
915             "casting {} to {} may become silently lossy if types change",
916             cast_from, cast_to
917         ),
918         "try",
919         format!("{}::from({})", cast_to, sugg),
920         applicability,
921     );
922 }
923
924 enum ArchSuffix {
925     _32,
926     _64,
927     None,
928 }
929
930 fn check_truncation_and_wrapping(cx: &LateContext<'_, '_>, expr: &Expr, cast_from: Ty<'_>, cast_to: Ty<'_>) {
931     let arch_64_suffix = " on targets with 64-bit wide pointers";
932     let arch_32_suffix = " on targets with 32-bit wide pointers";
933     let cast_unsigned_to_signed = !cast_from.is_signed() && cast_to.is_signed();
934     let from_nbits = int_ty_to_nbits(cast_from, cx.tcx);
935     let to_nbits = int_ty_to_nbits(cast_to, cx.tcx);
936     let (span_truncation, suffix_truncation, span_wrap, suffix_wrap) =
937         match (is_isize_or_usize(cast_from), is_isize_or_usize(cast_to)) {
938             (true, true) | (false, false) => (
939                 to_nbits < from_nbits,
940                 ArchSuffix::None,
941                 to_nbits == from_nbits && cast_unsigned_to_signed,
942                 ArchSuffix::None,
943             ),
944             (true, false) => (
945                 to_nbits <= 32,
946                 if to_nbits == 32 {
947                     ArchSuffix::_64
948                 } else {
949                     ArchSuffix::None
950                 },
951                 to_nbits <= 32 && cast_unsigned_to_signed,
952                 ArchSuffix::_32,
953             ),
954             (false, true) => (
955                 from_nbits == 64,
956                 ArchSuffix::_32,
957                 cast_unsigned_to_signed,
958                 if from_nbits == 64 {
959                     ArchSuffix::_64
960                 } else {
961                     ArchSuffix::_32
962                 },
963             ),
964         };
965     if span_truncation {
966         span_lint(
967             cx,
968             CAST_POSSIBLE_TRUNCATION,
969             expr.span,
970             &format!(
971                 "casting {} to {} may truncate the value{}",
972                 cast_from,
973                 cast_to,
974                 match suffix_truncation {
975                     ArchSuffix::_32 => arch_32_suffix,
976                     ArchSuffix::_64 => arch_64_suffix,
977                     ArchSuffix::None => "",
978                 }
979             ),
980         );
981     }
982     if span_wrap {
983         span_lint(
984             cx,
985             CAST_POSSIBLE_WRAP,
986             expr.span,
987             &format!(
988                 "casting {} to {} may wrap around the value{}",
989                 cast_from,
990                 cast_to,
991                 match suffix_wrap {
992                     ArchSuffix::_32 => arch_32_suffix,
993                     ArchSuffix::_64 => arch_64_suffix,
994                     ArchSuffix::None => "",
995                 }
996             ),
997         );
998     }
999 }
1000
1001 fn check_lossless(cx: &LateContext<'_, '_>, expr: &Expr, op: &Expr, cast_from: Ty<'_>, cast_to: Ty<'_>) {
1002     let cast_signed_to_unsigned = cast_from.is_signed() && !cast_to.is_signed();
1003     let from_nbits = int_ty_to_nbits(cast_from, cx.tcx);
1004     let to_nbits = int_ty_to_nbits(cast_to, cx.tcx);
1005     if !is_isize_or_usize(cast_from) && !is_isize_or_usize(cast_to) && from_nbits < to_nbits && !cast_signed_to_unsigned
1006     {
1007         span_lossless_lint(cx, expr, op, cast_from, cast_to);
1008     }
1009 }
1010
1011 impl LintPass for CastPass {
1012     fn get_lints(&self) -> LintArray {
1013         lint_array!(
1014             CAST_PRECISION_LOSS,
1015             CAST_SIGN_LOSS,
1016             CAST_POSSIBLE_TRUNCATION,
1017             CAST_POSSIBLE_WRAP,
1018             CAST_LOSSLESS,
1019             UNNECESSARY_CAST,
1020             CAST_PTR_ALIGNMENT,
1021             FN_TO_NUMERIC_CAST,
1022             FN_TO_NUMERIC_CAST_WITH_TRUNCATION,
1023         )
1024     }
1025 }
1026
1027 // Check if the given type is either `core::ffi::c_void` or
1028 // one of the platform specific `libc::<platform>::c_void` of libc.
1029 fn is_c_void(tcx: TyCtxt<'_, '_, '_>, ty: Ty<'_>) -> bool {
1030     if let ty::Adt(adt, _) = ty.sty {
1031         let mut apb = AbsolutePathBuffer { names: vec![] };
1032         tcx.push_item_path(&mut apb, adt.did, false);
1033
1034         if apb.names.is_empty() {
1035             return false;
1036         }
1037         if apb.names[0] == "libc" || apb.names[0] == "core" && *apb.names.last().unwrap() == "c_void" {
1038             return true;
1039         }
1040     }
1041     false
1042 }
1043
1044 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for CastPass {
1045     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
1046         if let ExprKind::Cast(ref ex, _) = expr.node {
1047             let (cast_from, cast_to) = (cx.tables.expr_ty(ex), cx.tables.expr_ty(expr));
1048             lint_fn_to_numeric_cast(cx, expr, ex, cast_from, cast_to);
1049             if let ExprKind::Lit(ref lit) = ex.node {
1050                 use crate::syntax::ast::{LitIntType, LitKind};
1051                 match lit.node {
1052                     LitKind::Int(_, LitIntType::Unsuffixed) | LitKind::FloatUnsuffixed(_) => {},
1053                     _ => {
1054                         if cast_from.sty == cast_to.sty && !in_external_macro(cx.sess(), expr.span) {
1055                             span_lint(
1056                                 cx,
1057                                 UNNECESSARY_CAST,
1058                                 expr.span,
1059                                 &format!(
1060                                     "casting to the same type is unnecessary (`{}` -> `{}`)",
1061                                     cast_from, cast_to
1062                                 ),
1063                             );
1064                         }
1065                     },
1066                 }
1067             }
1068             if cast_from.is_numeric() && cast_to.is_numeric() && !in_external_macro(cx.sess(), expr.span) {
1069                 match (cast_from.is_integral(), cast_to.is_integral()) {
1070                     (true, false) => {
1071                         let from_nbits = int_ty_to_nbits(cast_from, cx.tcx);
1072                         let to_nbits = if let ty::Float(FloatTy::F32) = cast_to.sty {
1073                             32
1074                         } else {
1075                             64
1076                         };
1077                         if is_isize_or_usize(cast_from) || from_nbits >= to_nbits {
1078                             span_precision_loss_lint(cx, expr, cast_from, to_nbits == 64);
1079                         }
1080                         if from_nbits < to_nbits {
1081                             span_lossless_lint(cx, expr, ex, cast_from, cast_to);
1082                         }
1083                     },
1084                     (false, true) => {
1085                         span_lint(
1086                             cx,
1087                             CAST_POSSIBLE_TRUNCATION,
1088                             expr.span,
1089                             &format!("casting {} to {} may truncate the value", cast_from, cast_to),
1090                         );
1091                         if !cast_to.is_signed() {
1092                             span_lint(
1093                                 cx,
1094                                 CAST_SIGN_LOSS,
1095                                 expr.span,
1096                                 &format!("casting {} to {} may lose the sign of the value", cast_from, cast_to),
1097                             );
1098                         }
1099                     },
1100                     (true, true) => {
1101                         if cast_from.is_signed() && !cast_to.is_signed() {
1102                             span_lint(
1103                                 cx,
1104                                 CAST_SIGN_LOSS,
1105                                 expr.span,
1106                                 &format!("casting {} to {} may lose the sign of the value", cast_from, cast_to),
1107                             );
1108                         }
1109                         check_truncation_and_wrapping(cx, expr, cast_from, cast_to);
1110                         check_lossless(cx, expr, ex, cast_from, cast_to);
1111                     },
1112                     (false, false) => {
1113                         if let (&ty::Float(FloatTy::F64), &ty::Float(FloatTy::F32)) = (&cast_from.sty, &cast_to.sty) {
1114                             span_lint(
1115                                 cx,
1116                                 CAST_POSSIBLE_TRUNCATION,
1117                                 expr.span,
1118                                 "casting f64 to f32 may truncate the value",
1119                             );
1120                         }
1121                         if let (&ty::Float(FloatTy::F32), &ty::Float(FloatTy::F64)) = (&cast_from.sty, &cast_to.sty) {
1122                             span_lossless_lint(cx, expr, ex, cast_from, cast_to);
1123                         }
1124                     },
1125                 }
1126             }
1127
1128             if_chain! {
1129                 if let ty::RawPtr(from_ptr_ty) = &cast_from.sty;
1130                 if let ty::RawPtr(to_ptr_ty) = &cast_to.sty;
1131                 if let Some(from_align) = cx.layout_of(from_ptr_ty.ty).ok().map(|a| a.align.abi);
1132                 if let Some(to_align) = cx.layout_of(to_ptr_ty.ty).ok().map(|a| a.align.abi);
1133                 if from_align < to_align;
1134                 // with c_void, we inherently need to trust the user
1135                 if !is_c_void(cx.tcx, from_ptr_ty.ty);
1136                 then {
1137                     span_lint(
1138                         cx,
1139                         CAST_PTR_ALIGNMENT,
1140                         expr.span,
1141                         &format!("casting from `{}` to a more-strictly-aligned pointer (`{}`)", cast_from, cast_to)
1142                     );
1143                 }
1144             }
1145         }
1146     }
1147 }
1148
1149 fn lint_fn_to_numeric_cast(
1150     cx: &LateContext<'_, '_>,
1151     expr: &Expr,
1152     cast_expr: &Expr,
1153     cast_from: Ty<'_>,
1154     cast_to: Ty<'_>,
1155 ) {
1156     // We only want to check casts to `ty::Uint` or `ty::Int`
1157     match cast_to.sty {
1158         ty::Uint(_) | ty::Int(..) => { /* continue on */ },
1159         _ => return,
1160     }
1161     match cast_from.sty {
1162         ty::FnDef(..) | ty::FnPtr(_) => {
1163             let mut applicability = Applicability::MachineApplicable;
1164             let from_snippet = snippet_with_applicability(cx, cast_expr.span, "x", &mut applicability);
1165
1166             let to_nbits = int_ty_to_nbits(cast_to, cx.tcx);
1167             if to_nbits < cx.tcx.data_layout.pointer_size.bits() {
1168                 span_lint_and_sugg(
1169                     cx,
1170                     FN_TO_NUMERIC_CAST_WITH_TRUNCATION,
1171                     expr.span,
1172                     &format!(
1173                         "casting function pointer `{}` to `{}`, which truncates the value",
1174                         from_snippet, cast_to
1175                     ),
1176                     "try",
1177                     format!("{} as usize", from_snippet),
1178                     applicability,
1179                 );
1180             } else if cast_to.sty != ty::Uint(UintTy::Usize) {
1181                 span_lint_and_sugg(
1182                     cx,
1183                     FN_TO_NUMERIC_CAST,
1184                     expr.span,
1185                     &format!("casting function pointer `{}` to `{}`", from_snippet, cast_to),
1186                     "try",
1187                     format!("{} as usize", from_snippet),
1188                     applicability,
1189                 );
1190             }
1191         },
1192         _ => {},
1193     }
1194 }
1195
1196 /// **What it does:** Checks for types used in structs, parameters and `let`
1197 /// declarations above a certain complexity threshold.
1198 ///
1199 /// **Why is this bad?** Too complex types make the code less readable. Consider
1200 /// using a `type` definition to simplify them.
1201 ///
1202 /// **Known problems:** None.
1203 ///
1204 /// **Example:**
1205 /// ```rust
1206 /// struct Foo {
1207 ///     inner: Rc<Vec<Vec<Box<(u32, u32, u32, u32)>>>>,
1208 /// }
1209 /// ```
1210 declare_clippy_lint! {
1211     pub TYPE_COMPLEXITY,
1212     complexity,
1213     "usage of very complex types that might be better factored into `type` definitions"
1214 }
1215
1216 pub struct TypeComplexityPass {
1217     threshold: u64,
1218 }
1219
1220 impl TypeComplexityPass {
1221     pub fn new(threshold: u64) -> Self {
1222         Self { threshold }
1223     }
1224 }
1225
1226 impl LintPass for TypeComplexityPass {
1227     fn get_lints(&self) -> LintArray {
1228         lint_array!(TYPE_COMPLEXITY)
1229     }
1230 }
1231
1232 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for TypeComplexityPass {
1233     fn check_fn(
1234         &mut self,
1235         cx: &LateContext<'a, 'tcx>,
1236         _: FnKind<'tcx>,
1237         decl: &'tcx FnDecl,
1238         _: &'tcx Body,
1239         _: Span,
1240         _: NodeId,
1241     ) {
1242         self.check_fndecl(cx, decl);
1243     }
1244
1245     fn check_struct_field(&mut self, cx: &LateContext<'a, 'tcx>, field: &'tcx StructField) {
1246         // enum variants are also struct fields now
1247         self.check_type(cx, &field.ty);
1248     }
1249
1250     fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item) {
1251         match item.node {
1252             ItemKind::Static(ref ty, _, _) | ItemKind::Const(ref ty, _) => self.check_type(cx, ty),
1253             // functions, enums, structs, impls and traits are covered
1254             _ => (),
1255         }
1256     }
1257
1258     fn check_trait_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx TraitItem) {
1259         match item.node {
1260             TraitItemKind::Const(ref ty, _) | TraitItemKind::Type(_, Some(ref ty)) => self.check_type(cx, ty),
1261             TraitItemKind::Method(MethodSig { ref decl, .. }, TraitMethod::Required(_)) => self.check_fndecl(cx, decl),
1262             // methods with default impl are covered by check_fn
1263             _ => (),
1264         }
1265     }
1266
1267     fn check_impl_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx ImplItem) {
1268         match item.node {
1269             ImplItemKind::Const(ref ty, _) | ImplItemKind::Type(ref ty) => self.check_type(cx, ty),
1270             // methods are covered by check_fn
1271             _ => (),
1272         }
1273     }
1274
1275     fn check_local(&mut self, cx: &LateContext<'a, 'tcx>, local: &'tcx Local) {
1276         if let Some(ref ty) = local.ty {
1277             self.check_type(cx, ty);
1278         }
1279     }
1280 }
1281
1282 impl<'a, 'tcx> TypeComplexityPass {
1283     fn check_fndecl(&self, cx: &LateContext<'a, 'tcx>, decl: &'tcx FnDecl) {
1284         for arg in &decl.inputs {
1285             self.check_type(cx, arg);
1286         }
1287         if let Return(ref ty) = decl.output {
1288             self.check_type(cx, ty);
1289         }
1290     }
1291
1292     fn check_type(&self, cx: &LateContext<'_, '_>, ty: &hir::Ty) {
1293         if in_macro(ty.span) {
1294             return;
1295         }
1296         let score = {
1297             let mut visitor = TypeComplexityVisitor { score: 0, nest: 1 };
1298             visitor.visit_ty(ty);
1299             visitor.score
1300         };
1301
1302         if score > self.threshold {
1303             span_lint(
1304                 cx,
1305                 TYPE_COMPLEXITY,
1306                 ty.span,
1307                 "very complex type used. Consider factoring parts into `type` definitions",
1308             );
1309         }
1310     }
1311 }
1312
1313 /// Walks a type and assigns a complexity score to it.
1314 struct TypeComplexityVisitor {
1315     /// total complexity score of the type
1316     score: u64,
1317     /// current nesting level
1318     nest: u64,
1319 }
1320
1321 impl<'tcx> Visitor<'tcx> for TypeComplexityVisitor {
1322     fn visit_ty(&mut self, ty: &'tcx hir::Ty) {
1323         let (add_score, sub_nest) = match ty.node {
1324             // _, &x and *x have only small overhead; don't mess with nesting level
1325             TyKind::Infer | TyKind::Ptr(..) | TyKind::Rptr(..) => (1, 0),
1326
1327             // the "normal" components of a type: named types, arrays/tuples
1328             TyKind::Path(..) | TyKind::Slice(..) | TyKind::Tup(..) | TyKind::Array(..) => (10 * self.nest, 1),
1329
1330             // function types bring a lot of overhead
1331             TyKind::BareFn(ref bare) if bare.abi == Abi::Rust => (50 * self.nest, 1),
1332
1333             TyKind::TraitObject(ref param_bounds, _) => {
1334                 let has_lifetime_parameters = param_bounds.iter().any(|bound| {
1335                     bound.bound_generic_params.iter().any(|gen| match gen.kind {
1336                         GenericParamKind::Lifetime { .. } => true,
1337                         _ => false,
1338                     })
1339                 });
1340                 if has_lifetime_parameters {
1341                     // complex trait bounds like A<'a, 'b>
1342                     (50 * self.nest, 1)
1343                 } else {
1344                     // simple trait bounds like A + B
1345                     (20 * self.nest, 0)
1346                 }
1347             },
1348
1349             _ => (0, 0),
1350         };
1351         self.score += add_score;
1352         self.nest += sub_nest;
1353         walk_ty(self, ty);
1354         self.nest -= sub_nest;
1355     }
1356     fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
1357         NestedVisitorMap::None
1358     }
1359 }
1360
1361 /// **What it does:** Checks for expressions where a character literal is cast
1362 /// to `u8` and suggests using a byte literal instead.
1363 ///
1364 /// **Why is this bad?** In general, casting values to smaller types is
1365 /// error-prone and should be avoided where possible. In the particular case of
1366 /// converting a character literal to u8, it is easy to avoid by just using a
1367 /// byte literal instead. As an added bonus, `b'a'` is even slightly shorter
1368 /// than `'a' as u8`.
1369 ///
1370 /// **Known problems:** None.
1371 ///
1372 /// **Example:**
1373 /// ```rust
1374 /// 'x' as u8
1375 /// ```
1376 ///
1377 /// A better version, using the byte literal:
1378 ///
1379 /// ```rust
1380 /// b'x'
1381 /// ```
1382 declare_clippy_lint! {
1383     pub CHAR_LIT_AS_U8,
1384     complexity,
1385     "casting a character literal to u8"
1386 }
1387
1388 pub struct CharLitAsU8;
1389
1390 impl LintPass for CharLitAsU8 {
1391     fn get_lints(&self) -> LintArray {
1392         lint_array!(CHAR_LIT_AS_U8)
1393     }
1394 }
1395
1396 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for CharLitAsU8 {
1397     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
1398         use crate::syntax::ast::{LitKind, UintTy};
1399
1400         if let ExprKind::Cast(ref e, _) = expr.node {
1401             if let ExprKind::Lit(ref l) = e.node {
1402                 if let LitKind::Char(_) = l.node {
1403                     if ty::Uint(UintTy::U8) == cx.tables.expr_ty(expr).sty && !in_macro(expr.span) {
1404                         let msg = "casting character literal to u8. `char`s \
1405                                    are 4 bytes wide in rust, so casting to u8 \
1406                                    truncates them";
1407                         let help = format!(
1408                             "Consider using a byte literal instead:\nb{}",
1409                             snippet(cx, e.span, "'x'")
1410                         );
1411                         span_help_and_lint(cx, CHAR_LIT_AS_U8, expr.span, msg, &help);
1412                     }
1413                 }
1414             }
1415         }
1416     }
1417 }
1418
1419 /// **What it does:** Checks for comparisons where one side of the relation is
1420 /// either the minimum or maximum value for its type and warns if it involves a
1421 /// case that is always true or always false. Only integer and boolean types are
1422 /// checked.
1423 ///
1424 /// **Why is this bad?** An expression like `min <= x` may misleadingly imply
1425 /// that is is possible for `x` to be less than the minimum. Expressions like
1426 /// `max < x` are probably mistakes.
1427 ///
1428 /// **Known problems:** For `usize` the size of the current compile target will
1429 /// be assumed (e.g. 64 bits on 64 bit systems). This means code that uses such
1430 /// a comparison to detect target pointer width will trigger this lint. One can
1431 /// use `mem::sizeof` and compare its value or conditional compilation
1432 /// attributes
1433 /// like `#[cfg(target_pointer_width = "64")] ..` instead.
1434 ///
1435 /// **Example:**
1436 /// ```rust
1437 /// vec.len() <= 0
1438 /// 100 > std::i32::MAX
1439 /// ```
1440 declare_clippy_lint! {
1441     pub ABSURD_EXTREME_COMPARISONS,
1442     correctness,
1443     "a comparison with a maximum or minimum value that is always true or false"
1444 }
1445
1446 pub struct AbsurdExtremeComparisons;
1447
1448 impl LintPass for AbsurdExtremeComparisons {
1449     fn get_lints(&self) -> LintArray {
1450         lint_array!(ABSURD_EXTREME_COMPARISONS)
1451     }
1452 }
1453
1454 enum ExtremeType {
1455     Minimum,
1456     Maximum,
1457 }
1458
1459 struct ExtremeExpr<'a> {
1460     which: ExtremeType,
1461     expr: &'a Expr,
1462 }
1463
1464 enum AbsurdComparisonResult {
1465     AlwaysFalse,
1466     AlwaysTrue,
1467     InequalityImpossible,
1468 }
1469
1470 fn is_cast_between_fixed_and_target<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) -> bool {
1471     if let ExprKind::Cast(ref cast_exp, _) = expr.node {
1472         let precast_ty = cx.tables.expr_ty(cast_exp);
1473         let cast_ty = cx.tables.expr_ty(expr);
1474
1475         return is_isize_or_usize(precast_ty) != is_isize_or_usize(cast_ty);
1476     }
1477
1478     false
1479 }
1480
1481 fn detect_absurd_comparison<'a, 'tcx>(
1482     cx: &LateContext<'a, 'tcx>,
1483     op: BinOpKind,
1484     lhs: &'tcx Expr,
1485     rhs: &'tcx Expr,
1486 ) -> Option<(ExtremeExpr<'tcx>, AbsurdComparisonResult)> {
1487     use crate::types::AbsurdComparisonResult::*;
1488     use crate::types::ExtremeType::*;
1489     use crate::utils::comparisons::*;
1490
1491     // absurd comparison only makes sense on primitive types
1492     // primitive types don't implement comparison operators with each other
1493     if cx.tables.expr_ty(lhs) != cx.tables.expr_ty(rhs) {
1494         return None;
1495     }
1496
1497     // comparisons between fix sized types and target sized types are considered unanalyzable
1498     if is_cast_between_fixed_and_target(cx, lhs) || is_cast_between_fixed_and_target(cx, rhs) {
1499         return None;
1500     }
1501
1502     let normalized = normalize_comparison(op, lhs, rhs);
1503     let (rel, normalized_lhs, normalized_rhs) = if let Some(val) = normalized {
1504         val
1505     } else {
1506         return None;
1507     };
1508
1509     let lx = detect_extreme_expr(cx, normalized_lhs);
1510     let rx = detect_extreme_expr(cx, normalized_rhs);
1511
1512     Some(match rel {
1513         Rel::Lt => {
1514             match (lx, rx) {
1515                 (Some(l @ ExtremeExpr { which: Maximum, .. }), _) => (l, AlwaysFalse), // max < x
1516                 (_, Some(r @ ExtremeExpr { which: Minimum, .. })) => (r, AlwaysFalse), // x < min
1517                 _ => return None,
1518             }
1519         },
1520         Rel::Le => {
1521             match (lx, rx) {
1522                 (Some(l @ ExtremeExpr { which: Minimum, .. }), _) => (l, AlwaysTrue), // min <= x
1523                 (Some(l @ ExtremeExpr { which: Maximum, .. }), _) => (l, InequalityImpossible), // max <= x
1524                 (_, Some(r @ ExtremeExpr { which: Minimum, .. })) => (r, InequalityImpossible), // x <= min
1525                 (_, Some(r @ ExtremeExpr { which: Maximum, .. })) => (r, AlwaysTrue), // x <= max
1526                 _ => return None,
1527             }
1528         },
1529         Rel::Ne | Rel::Eq => return None,
1530     })
1531 }
1532
1533 fn detect_extreme_expr<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) -> Option<ExtremeExpr<'tcx>> {
1534     use crate::types::ExtremeType::*;
1535
1536     let ty = cx.tables.expr_ty(expr);
1537
1538     let cv = constant(cx, cx.tables, expr)?.0;
1539
1540     let which = match (&ty.sty, cv) {
1541         (&ty::Bool, Constant::Bool(false)) | (&ty::Uint(_), Constant::Int(0)) => Minimum,
1542         (&ty::Int(ity), Constant::Int(i))
1543             if i == unsext(cx.tcx, i128::min_value() >> (128 - int_bits(cx.tcx, ity)), ity) =>
1544         {
1545             Minimum
1546         },
1547
1548         (&ty::Bool, Constant::Bool(true)) => Maximum,
1549         (&ty::Int(ity), Constant::Int(i))
1550             if i == unsext(cx.tcx, i128::max_value() >> (128 - int_bits(cx.tcx, ity)), ity) =>
1551         {
1552             Maximum
1553         },
1554         (&ty::Uint(uty), Constant::Int(i)) if clip(cx.tcx, u128::max_value(), uty) == i => Maximum,
1555
1556         _ => return None,
1557     };
1558     Some(ExtremeExpr { which, expr })
1559 }
1560
1561 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for AbsurdExtremeComparisons {
1562     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
1563         use crate::types::AbsurdComparisonResult::*;
1564         use crate::types::ExtremeType::*;
1565
1566         if let ExprKind::Binary(ref cmp, ref lhs, ref rhs) = expr.node {
1567             if let Some((culprit, result)) = detect_absurd_comparison(cx, cmp.node, lhs, rhs) {
1568                 if !in_macro(expr.span) {
1569                     let msg = "this comparison involving the minimum or maximum element for this \
1570                                type contains a case that is always true or always false";
1571
1572                     let conclusion = match result {
1573                         AlwaysFalse => "this comparison is always false".to_owned(),
1574                         AlwaysTrue => "this comparison is always true".to_owned(),
1575                         InequalityImpossible => format!(
1576                             "the case where the two sides are not equal never occurs, consider using {} == {} \
1577                              instead",
1578                             snippet(cx, lhs.span, "lhs"),
1579                             snippet(cx, rhs.span, "rhs")
1580                         ),
1581                     };
1582
1583                     let help = format!(
1584                         "because {} is the {} value for this type, {}",
1585                         snippet(cx, culprit.expr.span, "x"),
1586                         match culprit.which {
1587                             Minimum => "minimum",
1588                             Maximum => "maximum",
1589                         },
1590                         conclusion
1591                     );
1592
1593                     span_help_and_lint(cx, ABSURD_EXTREME_COMPARISONS, expr.span, msg, &help);
1594                 }
1595             }
1596         }
1597     }
1598 }
1599
1600 /// **What it does:** Checks for comparisons where the relation is always either
1601 /// true or false, but where one side has been upcast so that the comparison is
1602 /// necessary. Only integer types are checked.
1603 ///
1604 /// **Why is this bad?** An expression like `let x : u8 = ...; (x as u32) > 300`
1605 /// will mistakenly imply that it is possible for `x` to be outside the range of
1606 /// `u8`.
1607 ///
1608 /// **Known problems:**
1609 /// https://github.com/rust-lang/rust-clippy/issues/886
1610 ///
1611 /// **Example:**
1612 /// ```rust
1613 /// let x : u8 = ...; (x as u32) > 300
1614 /// ```
1615 declare_clippy_lint! {
1616     pub INVALID_UPCAST_COMPARISONS,
1617     pedantic,
1618     "a comparison involving an upcast which is always true or false"
1619 }
1620
1621 pub struct InvalidUpcastComparisons;
1622
1623 impl LintPass for InvalidUpcastComparisons {
1624     fn get_lints(&self) -> LintArray {
1625         lint_array!(INVALID_UPCAST_COMPARISONS)
1626     }
1627 }
1628
1629 #[derive(Copy, Clone, Debug, Eq)]
1630 enum FullInt {
1631     S(i128),
1632     U(u128),
1633 }
1634
1635 impl FullInt {
1636     #[allow(clippy::cast_sign_loss)]
1637     fn cmp_s_u(s: i128, u: u128) -> Ordering {
1638         if s < 0 {
1639             Ordering::Less
1640         } else if u > (i128::max_value() as u128) {
1641             Ordering::Greater
1642         } else {
1643             (s as u128).cmp(&u)
1644         }
1645     }
1646 }
1647
1648 impl PartialEq for FullInt {
1649     fn eq(&self, other: &Self) -> bool {
1650         self.partial_cmp(other).expect("partial_cmp only returns Some(_)") == Ordering::Equal
1651     }
1652 }
1653
1654 impl PartialOrd for FullInt {
1655     fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
1656         Some(match (self, other) {
1657             (&FullInt::S(s), &FullInt::S(o)) => s.cmp(&o),
1658             (&FullInt::U(s), &FullInt::U(o)) => s.cmp(&o),
1659             (&FullInt::S(s), &FullInt::U(o)) => Self::cmp_s_u(s, o),
1660             (&FullInt::U(s), &FullInt::S(o)) => Self::cmp_s_u(o, s).reverse(),
1661         })
1662     }
1663 }
1664 impl Ord for FullInt {
1665     fn cmp(&self, other: &Self) -> Ordering {
1666         self.partial_cmp(other)
1667             .expect("partial_cmp for FullInt can never return None")
1668     }
1669 }
1670
1671 fn numeric_cast_precast_bounds<'a>(cx: &LateContext<'_, '_>, expr: &'a Expr) -> Option<(FullInt, FullInt)> {
1672     use crate::syntax::ast::{IntTy, UintTy};
1673     use std::*;
1674
1675     if let ExprKind::Cast(ref cast_exp, _) = expr.node {
1676         let pre_cast_ty = cx.tables.expr_ty(cast_exp);
1677         let cast_ty = cx.tables.expr_ty(expr);
1678         // if it's a cast from i32 to u32 wrapping will invalidate all these checks
1679         if cx.layout_of(pre_cast_ty).ok().map(|l| l.size) == cx.layout_of(cast_ty).ok().map(|l| l.size) {
1680             return None;
1681         }
1682         match pre_cast_ty.sty {
1683             ty::Int(int_ty) => Some(match int_ty {
1684                 IntTy::I8 => (
1685                     FullInt::S(i128::from(i8::min_value())),
1686                     FullInt::S(i128::from(i8::max_value())),
1687                 ),
1688                 IntTy::I16 => (
1689                     FullInt::S(i128::from(i16::min_value())),
1690                     FullInt::S(i128::from(i16::max_value())),
1691                 ),
1692                 IntTy::I32 => (
1693                     FullInt::S(i128::from(i32::min_value())),
1694                     FullInt::S(i128::from(i32::max_value())),
1695                 ),
1696                 IntTy::I64 => (
1697                     FullInt::S(i128::from(i64::min_value())),
1698                     FullInt::S(i128::from(i64::max_value())),
1699                 ),
1700                 IntTy::I128 => (FullInt::S(i128::min_value()), FullInt::S(i128::max_value())),
1701                 IntTy::Isize => (
1702                     FullInt::S(isize::min_value() as i128),
1703                     FullInt::S(isize::max_value() as i128),
1704                 ),
1705             }),
1706             ty::Uint(uint_ty) => Some(match uint_ty {
1707                 UintTy::U8 => (
1708                     FullInt::U(u128::from(u8::min_value())),
1709                     FullInt::U(u128::from(u8::max_value())),
1710                 ),
1711                 UintTy::U16 => (
1712                     FullInt::U(u128::from(u16::min_value())),
1713                     FullInt::U(u128::from(u16::max_value())),
1714                 ),
1715                 UintTy::U32 => (
1716                     FullInt::U(u128::from(u32::min_value())),
1717                     FullInt::U(u128::from(u32::max_value())),
1718                 ),
1719                 UintTy::U64 => (
1720                     FullInt::U(u128::from(u64::min_value())),
1721                     FullInt::U(u128::from(u64::max_value())),
1722                 ),
1723                 UintTy::U128 => (FullInt::U(u128::min_value()), FullInt::U(u128::max_value())),
1724                 UintTy::Usize => (
1725                     FullInt::U(usize::min_value() as u128),
1726                     FullInt::U(usize::max_value() as u128),
1727                 ),
1728             }),
1729             _ => None,
1730         }
1731     } else {
1732         None
1733     }
1734 }
1735
1736 fn node_as_const_fullint<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) -> Option<FullInt> {
1737     let val = constant(cx, cx.tables, expr)?.0;
1738     if let Constant::Int(const_int) = val {
1739         match cx.tables.expr_ty(expr).sty {
1740             ty::Int(ity) => Some(FullInt::S(sext(cx.tcx, const_int, ity))),
1741             ty::Uint(_) => Some(FullInt::U(const_int)),
1742             _ => None,
1743         }
1744     } else {
1745         None
1746     }
1747 }
1748
1749 fn err_upcast_comparison(cx: &LateContext<'_, '_>, span: Span, expr: &Expr, always: bool) {
1750     if let ExprKind::Cast(ref cast_val, _) = expr.node {
1751         span_lint(
1752             cx,
1753             INVALID_UPCAST_COMPARISONS,
1754             span,
1755             &format!(
1756                 "because of the numeric bounds on `{}` prior to casting, this expression is always {}",
1757                 snippet(cx, cast_val.span, "the expression"),
1758                 if always { "true" } else { "false" },
1759             ),
1760         );
1761     }
1762 }
1763
1764 fn upcast_comparison_bounds_err<'a, 'tcx>(
1765     cx: &LateContext<'a, 'tcx>,
1766     span: Span,
1767     rel: comparisons::Rel,
1768     lhs_bounds: Option<(FullInt, FullInt)>,
1769     lhs: &'tcx Expr,
1770     rhs: &'tcx Expr,
1771     invert: bool,
1772 ) {
1773     use crate::utils::comparisons::*;
1774
1775     if let Some((lb, ub)) = lhs_bounds {
1776         if let Some(norm_rhs_val) = node_as_const_fullint(cx, rhs) {
1777             if rel == Rel::Eq || rel == Rel::Ne {
1778                 if norm_rhs_val < lb || norm_rhs_val > ub {
1779                     err_upcast_comparison(cx, span, lhs, rel == Rel::Ne);
1780                 }
1781             } else if match rel {
1782                 Rel::Lt => {
1783                     if invert {
1784                         norm_rhs_val < lb
1785                     } else {
1786                         ub < norm_rhs_val
1787                     }
1788                 },
1789                 Rel::Le => {
1790                     if invert {
1791                         norm_rhs_val <= lb
1792                     } else {
1793                         ub <= norm_rhs_val
1794                     }
1795                 },
1796                 Rel::Eq | Rel::Ne => unreachable!(),
1797             } {
1798                 err_upcast_comparison(cx, span, lhs, true)
1799             } else if match rel {
1800                 Rel::Lt => {
1801                     if invert {
1802                         norm_rhs_val >= ub
1803                     } else {
1804                         lb >= norm_rhs_val
1805                     }
1806                 },
1807                 Rel::Le => {
1808                     if invert {
1809                         norm_rhs_val > ub
1810                     } else {
1811                         lb > norm_rhs_val
1812                     }
1813                 },
1814                 Rel::Eq | Rel::Ne => unreachable!(),
1815             } {
1816                 err_upcast_comparison(cx, span, lhs, false)
1817             }
1818         }
1819     }
1820 }
1821
1822 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for InvalidUpcastComparisons {
1823     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
1824         if let ExprKind::Binary(ref cmp, ref lhs, ref rhs) = expr.node {
1825             let normalized = comparisons::normalize_comparison(cmp.node, lhs, rhs);
1826             let (rel, normalized_lhs, normalized_rhs) = if let Some(val) = normalized {
1827                 val
1828             } else {
1829                 return;
1830             };
1831
1832             let lhs_bounds = numeric_cast_precast_bounds(cx, normalized_lhs);
1833             let rhs_bounds = numeric_cast_precast_bounds(cx, normalized_rhs);
1834
1835             upcast_comparison_bounds_err(cx, expr.span, rel, lhs_bounds, normalized_lhs, normalized_rhs, false);
1836             upcast_comparison_bounds_err(cx, expr.span, rel, rhs_bounds, normalized_rhs, normalized_lhs, true);
1837         }
1838     }
1839 }
1840
1841 /// **What it does:** Checks for public `impl` or `fn` missing generalization
1842 /// over different hashers and implicitly defaulting to the default hashing
1843 /// algorithm (SipHash).
1844 ///
1845 /// **Why is this bad?** `HashMap` or `HashSet` with custom hashers cannot be
1846 /// used with them.
1847 ///
1848 /// **Known problems:** Suggestions for replacing constructors can contain
1849 /// false-positives. Also applying suggestions can require modification of other
1850 /// pieces of code, possibly including external crates.
1851 ///
1852 /// **Example:**
1853 /// ```rust
1854 /// impl<K: Hash + Eq, V> Serialize for HashMap<K, V> { ... }
1855 ///
1856 /// pub foo(map: &mut HashMap<i32, i32>) { .. }
1857 /// ```
1858 declare_clippy_lint! {
1859     pub IMPLICIT_HASHER,
1860     style,
1861     "missing generalization over different hashers"
1862 }
1863
1864 pub struct ImplicitHasher;
1865
1866 impl LintPass for ImplicitHasher {
1867     fn get_lints(&self) -> LintArray {
1868         lint_array!(IMPLICIT_HASHER)
1869     }
1870 }
1871
1872 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for ImplicitHasher {
1873     #[allow(clippy::cast_possible_truncation)]
1874     fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item) {
1875         use crate::syntax_pos::BytePos;
1876
1877         fn suggestion<'a, 'tcx>(
1878             cx: &LateContext<'a, 'tcx>,
1879             db: &mut DiagnosticBuilder<'_>,
1880             generics_span: Span,
1881             generics_suggestion_span: Span,
1882             target: &ImplicitHasherType<'_>,
1883             vis: ImplicitHasherConstructorVisitor<'_, '_, '_>,
1884         ) {
1885             let generics_snip = snippet(cx, generics_span, "");
1886             // trim `<` `>`
1887             let generics_snip = if generics_snip.is_empty() {
1888                 ""
1889             } else {
1890                 &generics_snip[1..generics_snip.len() - 1]
1891             };
1892
1893             multispan_sugg(
1894                 db,
1895                 "consider adding a type parameter".to_string(),
1896                 vec![
1897                     (
1898                         generics_suggestion_span,
1899                         format!(
1900                             "<{}{}S: ::std::hash::BuildHasher{}>",
1901                             generics_snip,
1902                             if generics_snip.is_empty() { "" } else { ", " },
1903                             if vis.suggestions.is_empty() {
1904                                 ""
1905                             } else {
1906                                 // request users to add `Default` bound so that generic constructors can be used
1907                                 " + Default"
1908                             },
1909                         ),
1910                     ),
1911                     (
1912                         target.span(),
1913                         format!("{}<{}, S>", target.type_name(), target.type_arguments(),),
1914                     ),
1915                 ],
1916             );
1917
1918             if !vis.suggestions.is_empty() {
1919                 multispan_sugg(db, "...and use generic constructor".into(), vis.suggestions);
1920             }
1921         }
1922
1923         if !cx.access_levels.is_exported(item.id) {
1924             return;
1925         }
1926
1927         match item.node {
1928             ItemKind::Impl(_, _, _, ref generics, _, ref ty, ref items) => {
1929                 let mut vis = ImplicitHasherTypeVisitor::new(cx);
1930                 vis.visit_ty(ty);
1931
1932                 for target in &vis.found {
1933                     if differing_macro_contexts(item.span, target.span()) {
1934                         return;
1935                     }
1936
1937                     let generics_suggestion_span = generics.span.substitute_dummy({
1938                         let pos = snippet_opt(cx, item.span.until(target.span()))
1939                             .and_then(|snip| Some(item.span.lo() + BytePos(snip.find("impl")? as u32 + 4)));
1940                         if let Some(pos) = pos {
1941                             Span::new(pos, pos, item.span.data().ctxt)
1942                         } else {
1943                             return;
1944                         }
1945                     });
1946
1947                     let mut ctr_vis = ImplicitHasherConstructorVisitor::new(cx, target);
1948                     for item in items.iter().map(|item| cx.tcx.hir().impl_item(item.id)) {
1949                         ctr_vis.visit_impl_item(item);
1950                     }
1951
1952                     span_lint_and_then(
1953                         cx,
1954                         IMPLICIT_HASHER,
1955                         target.span(),
1956                         &format!(
1957                             "impl for `{}` should be generalized over different hashers",
1958                             target.type_name()
1959                         ),
1960                         move |db| {
1961                             suggestion(cx, db, generics.span, generics_suggestion_span, target, ctr_vis);
1962                         },
1963                     );
1964                 }
1965             },
1966             ItemKind::Fn(ref decl, .., ref generics, body_id) => {
1967                 let body = cx.tcx.hir().body(body_id);
1968
1969                 for ty in &decl.inputs {
1970                     let mut vis = ImplicitHasherTypeVisitor::new(cx);
1971                     vis.visit_ty(ty);
1972
1973                     for target in &vis.found {
1974                         let generics_suggestion_span = generics.span.substitute_dummy({
1975                             let pos = snippet_opt(cx, item.span.until(body.arguments[0].pat.span))
1976                                 .and_then(|snip| {
1977                                     let i = snip.find("fn")?;
1978                                     Some(item.span.lo() + BytePos((i + (&snip[i..]).find('(')?) as u32))
1979                                 })
1980                                 .expect("failed to create span for type parameters");
1981                             Span::new(pos, pos, item.span.data().ctxt)
1982                         });
1983
1984                         let mut ctr_vis = ImplicitHasherConstructorVisitor::new(cx, target);
1985                         ctr_vis.visit_body(body);
1986
1987                         span_lint_and_then(
1988                             cx,
1989                             IMPLICIT_HASHER,
1990                             target.span(),
1991                             &format!(
1992                                 "parameter of type `{}` should be generalized over different hashers",
1993                                 target.type_name()
1994                             ),
1995                             move |db| {
1996                                 suggestion(cx, db, generics.span, generics_suggestion_span, target, ctr_vis);
1997                             },
1998                         );
1999                     }
2000                 }
2001             },
2002             _ => {},
2003         }
2004     }
2005 }
2006
2007 enum ImplicitHasherType<'tcx> {
2008     HashMap(Span, Ty<'tcx>, Cow<'static, str>, Cow<'static, str>),
2009     HashSet(Span, Ty<'tcx>, Cow<'static, str>),
2010 }
2011
2012 impl<'tcx> ImplicitHasherType<'tcx> {
2013     /// Checks that `ty` is a target type without a BuildHasher.
2014     fn new<'a>(cx: &LateContext<'a, 'tcx>, hir_ty: &hir::Ty) -> Option<Self> {
2015         if let TyKind::Path(QPath::Resolved(None, ref path)) = hir_ty.node {
2016             let params: Vec<_> = path
2017                 .segments
2018                 .last()
2019                 .as_ref()?
2020                 .args
2021                 .as_ref()?
2022                 .args
2023                 .iter()
2024                 .filter_map(|arg| match arg {
2025                     GenericArg::Type(ty) => Some(ty),
2026                     GenericArg::Lifetime(_) => None,
2027                 })
2028                 .collect();
2029             let params_len = params.len();
2030
2031             let ty = hir_ty_to_ty(cx.tcx, hir_ty);
2032
2033             if match_path(path, &paths::HASHMAP) && params_len == 2 {
2034                 Some(ImplicitHasherType::HashMap(
2035                     hir_ty.span,
2036                     ty,
2037                     snippet(cx, params[0].span, "K"),
2038                     snippet(cx, params[1].span, "V"),
2039                 ))
2040             } else if match_path(path, &paths::HASHSET) && params_len == 1 {
2041                 Some(ImplicitHasherType::HashSet(
2042                     hir_ty.span,
2043                     ty,
2044                     snippet(cx, params[0].span, "T"),
2045                 ))
2046             } else {
2047                 None
2048             }
2049         } else {
2050             None
2051         }
2052     }
2053
2054     fn type_name(&self) -> &'static str {
2055         match *self {
2056             ImplicitHasherType::HashMap(..) => "HashMap",
2057             ImplicitHasherType::HashSet(..) => "HashSet",
2058         }
2059     }
2060
2061     fn type_arguments(&self) -> String {
2062         match *self {
2063             ImplicitHasherType::HashMap(.., ref k, ref v) => format!("{}, {}", k, v),
2064             ImplicitHasherType::HashSet(.., ref t) => format!("{}", t),
2065         }
2066     }
2067
2068     fn ty(&self) -> Ty<'tcx> {
2069         match *self {
2070             ImplicitHasherType::HashMap(_, ty, ..) | ImplicitHasherType::HashSet(_, ty, ..) => ty,
2071         }
2072     }
2073
2074     fn span(&self) -> Span {
2075         match *self {
2076             ImplicitHasherType::HashMap(span, ..) | ImplicitHasherType::HashSet(span, ..) => span,
2077         }
2078     }
2079 }
2080
2081 struct ImplicitHasherTypeVisitor<'a, 'tcx: 'a> {
2082     cx: &'a LateContext<'a, 'tcx>,
2083     found: Vec<ImplicitHasherType<'tcx>>,
2084 }
2085
2086 impl<'a, 'tcx: 'a> ImplicitHasherTypeVisitor<'a, 'tcx> {
2087     fn new(cx: &'a LateContext<'a, 'tcx>) -> Self {
2088         Self { cx, found: vec![] }
2089     }
2090 }
2091
2092 impl<'a, 'tcx: 'a> Visitor<'tcx> for ImplicitHasherTypeVisitor<'a, 'tcx> {
2093     fn visit_ty(&mut self, t: &'tcx hir::Ty) {
2094         if let Some(target) = ImplicitHasherType::new(self.cx, t) {
2095             self.found.push(target);
2096         }
2097
2098         walk_ty(self, t);
2099     }
2100
2101     fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
2102         NestedVisitorMap::None
2103     }
2104 }
2105
2106 /// Looks for default-hasher-dependent constructors like `HashMap::new`.
2107 struct ImplicitHasherConstructorVisitor<'a, 'b, 'tcx: 'a + 'b> {
2108     cx: &'a LateContext<'a, 'tcx>,
2109     body: &'a TypeckTables<'tcx>,
2110     target: &'b ImplicitHasherType<'tcx>,
2111     suggestions: BTreeMap<Span, String>,
2112 }
2113
2114 impl<'a, 'b, 'tcx: 'a + 'b> ImplicitHasherConstructorVisitor<'a, 'b, 'tcx> {
2115     fn new(cx: &'a LateContext<'a, 'tcx>, target: &'b ImplicitHasherType<'tcx>) -> Self {
2116         Self {
2117             cx,
2118             body: cx.tables,
2119             target,
2120             suggestions: BTreeMap::new(),
2121         }
2122     }
2123 }
2124
2125 impl<'a, 'b, 'tcx: 'a + 'b> Visitor<'tcx> for ImplicitHasherConstructorVisitor<'a, 'b, 'tcx> {
2126     fn visit_body(&mut self, body: &'tcx Body) {
2127         self.body = self.cx.tcx.body_tables(body.id());
2128         walk_body(self, body);
2129     }
2130
2131     fn visit_expr(&mut self, e: &'tcx Expr) {
2132         if_chain! {
2133             if let ExprKind::Call(ref fun, ref args) = e.node;
2134             if let ExprKind::Path(QPath::TypeRelative(ref ty, ref method)) = fun.node;
2135             if let TyKind::Path(QPath::Resolved(None, ref ty_path)) = ty.node;
2136             then {
2137                 if !same_tys(self.cx, self.target.ty(), self.body.expr_ty(e)) {
2138                     return;
2139                 }
2140
2141                 if match_path(ty_path, &paths::HASHMAP) {
2142                     if method.ident.name == "new" {
2143                         self.suggestions
2144                             .insert(e.span, "HashMap::default()".to_string());
2145                     } else if method.ident.name == "with_capacity" {
2146                         self.suggestions.insert(
2147                             e.span,
2148                             format!(
2149                                 "HashMap::with_capacity_and_hasher({}, Default::default())",
2150                                 snippet(self.cx, args[0].span, "capacity"),
2151                             ),
2152                         );
2153                     }
2154                 } else if match_path(ty_path, &paths::HASHSET) {
2155                     if method.ident.name == "new" {
2156                         self.suggestions
2157                             .insert(e.span, "HashSet::default()".to_string());
2158                     } else if method.ident.name == "with_capacity" {
2159                         self.suggestions.insert(
2160                             e.span,
2161                             format!(
2162                                 "HashSet::with_capacity_and_hasher({}, Default::default())",
2163                                 snippet(self.cx, args[0].span, "capacity"),
2164                             ),
2165                         );
2166                     }
2167                 }
2168             }
2169         }
2170
2171         walk_expr(self, e);
2172     }
2173
2174     fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
2175         NestedVisitorMap::OnlyBodies(&self.cx.tcx.hir())
2176     }
2177 }