]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/missing_const_for_fn.rs
Auto merge of #5216 - krishna-veerareddy:issue-5192-fp-const-fn, r=flip1995
[rust.git] / clippy_lints / src / missing_const_for_fn.rs
1 use crate::utils::{has_drop, is_entrypoint_fn, span_lint, trait_ref_of_method};
2 use rustc::lint::in_external_macro;
3 use rustc_hir as hir;
4 use rustc_hir::intravisit::FnKind;
5 use rustc_hir::{Body, Constness, FnDecl, GenericParamKind, HirId};
6 use rustc_lint::{LateContext, LateLintPass};
7 use rustc_mir::transform::qualify_min_const_fn::is_min_const_fn;
8 use rustc_session::{declare_lint_pass, declare_tool_lint};
9 use rustc_span::Span;
10 use rustc_typeck::hir_ty_to_ty;
11 use std::matches;
12
13 declare_clippy_lint! {
14     /// **What it does:**
15     ///
16     /// Suggests the use of `const` in functions and methods where possible.
17     ///
18     /// **Why is this bad?**
19     ///
20     /// Not having the function const prevents callers of the function from being const as well.
21     ///
22     /// **Known problems:**
23     ///
24     /// Const functions are currently still being worked on, with some features only being available
25     /// on nightly. This lint does not consider all edge cases currently and the suggestions may be
26     /// incorrect if you are using this lint on stable.
27     ///
28     /// Also, the lint only runs one pass over the code. Consider these two non-const functions:
29     ///
30     /// ```rust
31     /// fn a() -> i32 {
32     ///     0
33     /// }
34     /// fn b() -> i32 {
35     ///     a()
36     /// }
37     /// ```
38     ///
39     /// When running Clippy, the lint will only suggest to make `a` const, because `b` at this time
40     /// can't be const as it calls a non-const function. Making `a` const and running Clippy again,
41     /// will suggest to make `b` const, too.
42     ///
43     /// **Example:**
44     ///
45     /// ```rust
46     /// # struct Foo {
47     /// #     random_number: usize,
48     /// # }
49     /// # impl Foo {
50     /// fn new() -> Self {
51     ///     Self { random_number: 42 }
52     /// }
53     /// # }
54     /// ```
55     ///
56     /// Could be a const fn:
57     ///
58     /// ```rust
59     /// # struct Foo {
60     /// #     random_number: usize,
61     /// # }
62     /// # impl Foo {
63     /// const fn new() -> Self {
64     ///     Self { random_number: 42 }
65     /// }
66     /// # }
67     /// ```
68     pub MISSING_CONST_FOR_FN,
69     nursery,
70     "Lint functions definitions that could be made `const fn`"
71 }
72
73 declare_lint_pass!(MissingConstForFn => [MISSING_CONST_FOR_FN]);
74
75 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MissingConstForFn {
76     fn check_fn(
77         &mut self,
78         cx: &LateContext<'_, '_>,
79         kind: FnKind<'_>,
80         _: &FnDecl<'_>,
81         _: &Body<'_>,
82         span: Span,
83         hir_id: HirId,
84     ) {
85         let def_id = cx.tcx.hir().local_def_id(hir_id);
86
87         if in_external_macro(cx.tcx.sess, span) || is_entrypoint_fn(cx, def_id) {
88             return;
89         }
90
91         // Perform some preliminary checks that rule out constness on the Clippy side. This way we
92         // can skip the actual const check and return early.
93         match kind {
94             FnKind::ItemFn(_, generics, header, ..) => {
95                 let has_const_generic_params = generics
96                     .params
97                     .iter()
98                     .any(|param| matches!(param.kind, GenericParamKind::Const{ .. }));
99
100                 if already_const(header) || has_const_generic_params {
101                     return;
102                 }
103             },
104             FnKind::Method(_, sig, ..) => {
105                 if trait_ref_of_method(cx, hir_id).is_some()
106                     || already_const(sig.header)
107                     || method_accepts_dropable(cx, sig.decl.inputs)
108                 {
109                     return;
110                 }
111             },
112             _ => return,
113         }
114
115         let mir = cx.tcx.optimized_mir(def_id);
116
117         if let Err((span, err)) = is_min_const_fn(cx.tcx, def_id, &mir) {
118             if rustc_mir::const_eval::is_min_const_fn(cx.tcx, def_id) {
119                 cx.tcx.sess.span_err(span, &err);
120             }
121         } else {
122             span_lint(cx, MISSING_CONST_FOR_FN, span, "this could be a `const fn`");
123         }
124     }
125 }
126
127 /// Returns true if any of the method parameters is a type that implements `Drop`. The method
128 /// can't be made const then, because `drop` can't be const-evaluated.
129 fn method_accepts_dropable(cx: &LateContext<'_, '_>, param_tys: &[hir::Ty<'_>]) -> bool {
130     // If any of the params are dropable, return true
131     param_tys.iter().any(|hir_ty| {
132         let ty_ty = hir_ty_to_ty(cx.tcx, hir_ty);
133         has_drop(cx, ty_ty)
134     })
135 }
136
137 // We don't have to lint on something that's already `const`
138 #[must_use]
139 fn already_const(header: hir::FnHeader) -> bool {
140     header.constness == Constness::Const
141 }