2020-03-09 23:17:15 -05:00
|
|
|
use crate::utils::{fn_has_unsatisfiable_preds, has_drop, is_entrypoint_fn, span_lint, trait_ref_of_method};
|
2020-01-06 10:39:50 -06:00
|
|
|
use rustc_hir as hir;
|
2020-01-09 01:13:22 -06:00
|
|
|
use rustc_hir::intravisit::FnKind;
|
2020-02-21 21:52:04 -06:00
|
|
|
use rustc_hir::{Body, Constness, FnDecl, GenericParamKind, HirId};
|
2020-01-12 00:08:41 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-03-30 04:02:14 -05:00
|
|
|
use rustc_middle::lint::in_external_macro;
|
2020-09-26 09:08:24 -05:00
|
|
|
use crate::utils::qualify_min_const_fn::is_min_const_fn;
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2019-12-30 18:17:56 -06:00
|
|
|
use rustc_span::Span;
|
2019-08-25 08:44:22 -05:00
|
|
|
use rustc_typeck::hir_ty_to_ty;
|
2019-01-09 13:11:37 -06:00
|
|
|
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:**
|
|
|
|
///
|
|
|
|
/// Suggests the use of `const` in functions and methods where possible.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?**
|
|
|
|
///
|
|
|
|
/// Not having the function const prevents callers of the function from being const as well.
|
|
|
|
///
|
|
|
|
/// **Known problems:**
|
|
|
|
///
|
|
|
|
/// Const functions are currently still being worked on, with some features only being available
|
|
|
|
/// on nightly. This lint does not consider all edge cases currently and the suggestions may be
|
|
|
|
/// incorrect if you are using this lint on stable.
|
|
|
|
///
|
|
|
|
/// Also, the lint only runs one pass over the code. Consider these two non-const functions:
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// fn a() -> i32 {
|
|
|
|
/// 0
|
|
|
|
/// }
|
|
|
|
/// fn b() -> i32 {
|
|
|
|
/// a()
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// When running Clippy, the lint will only suggest to make `a` const, because `b` at this time
|
|
|
|
/// can't be const as it calls a non-const function. Making `a` const and running Clippy again,
|
|
|
|
/// will suggest to make `b` const, too.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
///
|
|
|
|
/// ```rust
|
2019-08-03 14:01:23 -05:00
|
|
|
/// # struct Foo {
|
|
|
|
/// # random_number: usize,
|
|
|
|
/// # }
|
|
|
|
/// # impl Foo {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// fn new() -> Self {
|
|
|
|
/// Self { random_number: 42 }
|
|
|
|
/// }
|
2019-08-03 14:01:23 -05:00
|
|
|
/// # }
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Could be a const fn:
|
|
|
|
///
|
|
|
|
/// ```rust
|
2019-08-03 14:01:23 -05:00
|
|
|
/// # struct Foo {
|
|
|
|
/// # random_number: usize,
|
|
|
|
/// # }
|
|
|
|
/// # impl Foo {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// const fn new() -> Self {
|
|
|
|
/// Self { random_number: 42 }
|
|
|
|
/// }
|
2019-08-03 14:01:23 -05:00
|
|
|
/// # }
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```
|
2019-01-09 13:11:37 -06:00
|
|
|
pub MISSING_CONST_FOR_FN,
|
|
|
|
nursery,
|
|
|
|
"Lint functions definitions that could be made `const fn`"
|
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(MissingConstForFn => [MISSING_CONST_FOR_FN]);
|
2019-01-09 13:11:37 -06:00
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for MissingConstForFn {
|
2019-01-09 13:11:37 -06:00
|
|
|
fn check_fn(
|
|
|
|
&mut self,
|
2020-06-25 15:41:36 -05:00
|
|
|
cx: &LateContext<'_>,
|
2019-01-09 13:11:37 -06:00
|
|
|
kind: FnKind<'_>,
|
2019-12-29 22:02:10 -06:00
|
|
|
_: &FnDecl<'_>,
|
2019-12-22 08:42:41 -06:00
|
|
|
_: &Body<'_>,
|
2019-01-09 13:11:37 -06:00
|
|
|
span: Span,
|
2019-02-20 04:11:11 -06:00
|
|
|
hir_id: HirId,
|
2019-01-09 13:11:37 -06:00
|
|
|
) {
|
2019-07-05 22:52:51 -05:00
|
|
|
let def_id = cx.tcx.hir().local_def_id(hir_id);
|
2019-01-22 00:36:15 -06:00
|
|
|
|
2020-04-24 04:57:34 -05:00
|
|
|
if in_external_macro(cx.tcx.sess, span) || is_entrypoint_fn(cx, def_id.to_def_id()) {
|
2019-01-22 00:36:15 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-03-09 23:17:15 -05:00
|
|
|
// Building MIR for `fn`s with unsatisfiable preds results in ICE.
|
2020-04-24 04:57:34 -05:00
|
|
|
if fn_has_unsatisfiable_preds(cx, def_id.to_def_id()) {
|
2020-03-09 23:17:15 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-14 09:44:10 -06:00
|
|
|
// Perform some preliminary checks that rule out constness on the Clippy side. This way we
|
|
|
|
// can skip the actual const check and return early.
|
|
|
|
match kind {
|
2020-02-21 21:52:04 -06:00
|
|
|
FnKind::ItemFn(_, generics, header, ..) => {
|
|
|
|
let has_const_generic_params = generics
|
|
|
|
.params
|
|
|
|
.iter()
|
|
|
|
.any(|param| matches!(param.kind, GenericParamKind::Const{ .. }));
|
|
|
|
|
|
|
|
if already_const(header) || has_const_generic_params {
|
2019-01-14 09:44:10 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
},
|
2019-01-22 00:36:15 -06:00
|
|
|
FnKind::Method(_, sig, ..) => {
|
2019-08-25 08:44:22 -05:00
|
|
|
if trait_ref_of_method(cx, hir_id).is_some()
|
|
|
|
|| already_const(sig.header)
|
2019-12-29 22:02:10 -06:00
|
|
|
|| method_accepts_dropable(cx, sig.decl.inputs)
|
2019-08-25 08:44:22 -05:00
|
|
|
{
|
2019-01-14 09:44:10 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
},
|
2020-05-28 08:45:24 -05:00
|
|
|
FnKind::Closure(..) => return,
|
2019-01-14 09:44:10 -06:00
|
|
|
}
|
|
|
|
|
2019-01-09 13:11:37 -06:00
|
|
|
let mir = cx.tcx.optimized_mir(def_id);
|
2019-01-14 09:44:10 -06:00
|
|
|
|
2020-04-24 04:57:34 -05:00
|
|
|
if let Err((span, err)) = is_min_const_fn(cx.tcx, def_id.to_def_id(), &mir) {
|
|
|
|
if rustc_mir::const_eval::is_min_const_fn(cx.tcx, def_id.to_def_id()) {
|
2019-01-14 09:44:10 -06:00
|
|
|
cx.tcx.sess.span_err(span, &err);
|
2019-01-09 13:11:37 -06:00
|
|
|
}
|
2019-01-14 09:44:10 -06:00
|
|
|
} else {
|
2020-01-06 09:44:52 -06:00
|
|
|
span_lint(cx, MISSING_CONST_FOR_FN, span, "this could be a `const fn`");
|
2019-01-09 13:11:37 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-25 08:44:22 -05:00
|
|
|
/// Returns true if any of the method parameters is a type that implements `Drop`. The method
|
|
|
|
/// can't be made const then, because `drop` can't be const-evaluated.
|
2020-06-25 15:41:36 -05:00
|
|
|
fn method_accepts_dropable(cx: &LateContext<'_>, param_tys: &[hir::Ty<'_>]) -> bool {
|
2020-07-26 14:07:07 -05:00
|
|
|
// If any of the params are droppable, return true
|
2019-08-25 08:44:22 -05:00
|
|
|
param_tys.iter().any(|hir_ty| {
|
|
|
|
let ty_ty = hir_ty_to_ty(cx.tcx, hir_ty);
|
|
|
|
has_drop(cx, ty_ty)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-01-22 00:36:15 -06:00
|
|
|
// We don't have to lint on something that's already `const`
|
2019-09-18 01:37:41 -05:00
|
|
|
#[must_use]
|
2019-01-22 00:36:15 -06:00
|
|
|
fn already_const(header: hir::FnHeader) -> bool {
|
|
|
|
header.constness == Constness::Const
|
2019-01-09 13:11:37 -06:00
|
|
|
}
|