2021-03-25 13:29:11 -05:00
|
|
|
use clippy_utils::diagnostics::span_lint_and_then;
|
2020-02-29 11:41:18 -06:00
|
|
|
use if_chain::if_chain;
|
|
|
|
use rustc_errors::Applicability;
|
|
|
|
use rustc_hir::{Item, ItemKind};
|
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-03-23 16:07:46 -05:00
|
|
|
use rustc_middle::mir::interpret::ConstValue;
|
2021-08-30 09:38:27 -05:00
|
|
|
use rustc_middle::ty::layout::LayoutOf;
|
2020-03-23 16:07:46 -05:00
|
|
|
use rustc_middle::ty::{self, ConstKind};
|
2020-02-29 11:41:18 -06:00
|
|
|
use rustc_session::{declare_tool_lint, impl_lint_pass};
|
|
|
|
use rustc_span::{BytePos, Pos, Span};
|
|
|
|
use rustc_typeck::hir_ty_to_ty;
|
|
|
|
|
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for large `const` arrays that should
|
2020-02-29 11:41:18 -06:00
|
|
|
/// be defined as `static` instead.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Performance: const variables are inlined upon use.
|
2020-02-29 11:41:18 -06:00
|
|
|
/// Static items result in only one instance and has a fixed location in memory.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2020-02-29 11:41:18 -06:00
|
|
|
/// ```rust,ignore
|
|
|
|
/// // Bad
|
|
|
|
/// pub const a = [0u32; 1_000_000];
|
|
|
|
///
|
|
|
|
/// // Good
|
|
|
|
/// pub static a = [0u32; 1_000_000];
|
|
|
|
/// ```
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "1.44.0"]
|
2020-02-29 11:41:18 -06:00
|
|
|
pub LARGE_CONST_ARRAYS,
|
|
|
|
perf,
|
|
|
|
"large non-scalar const array may cause performance overhead"
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct LargeConstArrays {
|
|
|
|
maximum_allowed_size: u64,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LargeConstArrays {
|
|
|
|
#[must_use]
|
|
|
|
pub fn new(maximum_allowed_size: u64) -> Self {
|
|
|
|
Self { maximum_allowed_size }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl_lint_pass!(LargeConstArrays => [LARGE_CONST_ARRAYS]);
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for LargeConstArrays {
|
|
|
|
fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx Item<'_>) {
|
2020-02-29 11:41:18 -06:00
|
|
|
if_chain! {
|
|
|
|
if !item.span.from_expansion();
|
|
|
|
if let ItemKind::Const(hir_ty, _) = &item.kind;
|
|
|
|
let ty = hir_ty_to_ty(cx.tcx, hir_ty);
|
2020-08-03 17:18:29 -05:00
|
|
|
if let ty::Array(element_type, cst) = ty.kind();
|
2020-12-06 08:01:03 -06:00
|
|
|
if let ConstKind::Value(ConstValue::Scalar(element_count)) = cst.val;
|
2020-02-29 11:41:18 -06:00
|
|
|
if let Ok(element_count) = element_count.to_machine_usize(&cx.tcx);
|
Overhaul `TyS` and `Ty`.
Specifically, change `Ty` from this:
```
pub type Ty<'tcx> = &'tcx TyS<'tcx>;
```
to this
```
pub struct Ty<'tcx>(Interned<'tcx, TyS<'tcx>>);
```
There are two benefits to this.
- It's now a first class type, so we can define methods on it. This
means we can move a lot of methods away from `TyS`, leaving `TyS` as a
barely-used type, which is appropriate given that it's not meant to
be used directly.
- The uniqueness requirement is now explicit, via the `Interned` type.
E.g. the pointer-based `Eq` and `Hash` comes from `Interned`, rather
than via `TyS`, which wasn't obvious at all.
Much of this commit is boring churn. The interesting changes are in
these files:
- compiler/rustc_middle/src/arena.rs
- compiler/rustc_middle/src/mir/visit.rs
- compiler/rustc_middle/src/ty/context.rs
- compiler/rustc_middle/src/ty/mod.rs
Specifically:
- Most mentions of `TyS` are removed. It's very much a dumb struct now;
`Ty` has all the smarts.
- `TyS` now has `crate` visibility instead of `pub`.
- `TyS::make_for_test` is removed in favour of the static `BOOL_TY`,
which just works better with the new structure.
- The `Eq`/`Ord`/`Hash` impls are removed from `TyS`. `Interned`s impls
of `Eq`/`Hash` now suffice. `Ord` is now partly on `Interned`
(pointer-based, for the `Equal` case) and partly on `TyS`
(contents-based, for the other cases).
- There are many tedious sigil adjustments, i.e. adding or removing `*`
or `&`. They seem to be unavoidable.
2022-01-24 21:13:38 -06:00
|
|
|
if let Ok(element_size) = cx.layout_of(*element_type).map(|l| l.size.bytes());
|
2020-02-29 11:41:18 -06:00
|
|
|
if self.maximum_allowed_size < element_count * element_size;
|
|
|
|
|
|
|
|
then {
|
|
|
|
let hi_pos = item.ident.span.lo() - BytePos::from_usize(1);
|
|
|
|
let sugg_span = Span::new(
|
|
|
|
hi_pos - BytePos::from_usize("const".len()),
|
|
|
|
hi_pos,
|
|
|
|
item.span.ctxt(),
|
2021-04-18 07:27:04 -05:00
|
|
|
item.span.parent(),
|
2020-02-29 11:41:18 -06:00
|
|
|
);
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
LARGE_CONST_ARRAYS,
|
|
|
|
item.span,
|
|
|
|
"large array defined as const",
|
2020-04-17 01:08:00 -05:00
|
|
|
|diag| {
|
|
|
|
diag.span_suggestion(
|
2020-02-29 11:41:18 -06:00
|
|
|
sugg_span,
|
|
|
|
"make this a static item",
|
|
|
|
"static".to_string(),
|
|
|
|
Applicability::MachineApplicable,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|