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