2017-02-04 21:12:55 -06:00
|
|
|
//! lint when there is a large size difference between variants on an enum
|
2017-01-30 06:17:56 -06:00
|
|
|
|
2021-03-25 13:29:11 -05:00
|
|
|
use clippy_utils::diagnostics::span_lint_and_then;
|
|
|
|
use clippy_utils::source::snippet_opt;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc_errors::Applicability;
|
2020-02-21 02:39:38 -06:00
|
|
|
use rustc_hir::{Item, ItemKind, VariantData};
|
2020-01-12 00:08:41 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2021-01-02 09:29:43 -06:00
|
|
|
use rustc_middle::lint::in_external_macro;
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_tool_lint, impl_lint_pass};
|
2020-04-02 15:29:41 -05:00
|
|
|
use rustc_target::abi::LayoutOf;
|
2017-01-30 06:17:56 -06:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for large size differences between variants on
|
2019-03-05 10:50:33 -06:00
|
|
|
/// `enum`s.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Enum size is bounded by the largest variant. Having a
|
2020-04-08 17:05:20 -05:00
|
|
|
/// large variant can penalize the memory layout of that enum.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Known problems
|
|
|
|
/// This lint obviously cannot take the distribution of
|
2020-04-08 17:05:20 -05:00
|
|
|
/// variants in your running program into account. It is possible that the
|
|
|
|
/// smaller variants make up less than 1% of all instances, in which case
|
|
|
|
/// the overhead is negligible and the boxing is counter-productive. Always
|
|
|
|
/// measure the change this lint suggests.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```rust
|
2020-04-15 02:55:02 -05:00
|
|
|
/// // Bad
|
2019-03-05 10:50:33 -06:00
|
|
|
/// enum Test {
|
|
|
|
/// A(i32),
|
|
|
|
/// B([i32; 8000]),
|
|
|
|
/// }
|
2020-04-15 02:55:02 -05:00
|
|
|
///
|
|
|
|
/// // Possibly better
|
|
|
|
/// enum Test2 {
|
|
|
|
/// A(i32),
|
|
|
|
/// B(Box<[i32; 8000]>),
|
|
|
|
/// }
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```
|
2017-01-30 06:17:56 -06:00
|
|
|
pub LARGE_ENUM_VARIANT,
|
2018-03-28 08:24:26 -05:00
|
|
|
perf,
|
2017-02-04 21:12:55 -06:00
|
|
|
"large size difference between variants on an enum"
|
2017-01-30 06:17:56 -06:00
|
|
|
}
|
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2017-01-30 06:17:56 -06:00
|
|
|
pub struct LargeEnumVariant {
|
2017-02-04 21:12:55 -06:00
|
|
|
maximum_size_difference_allowed: u64,
|
2017-01-30 06:17:56 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl LargeEnumVariant {
|
2019-09-18 01:37:41 -05:00
|
|
|
#[must_use]
|
2017-02-04 21:12:55 -06:00
|
|
|
pub fn new(maximum_size_difference_allowed: u64) -> Self {
|
2017-09-05 04:33:04 -05:00
|
|
|
Self {
|
2018-03-15 10:07:15 -05:00
|
|
|
maximum_size_difference_allowed,
|
2017-09-05 04:33:04 -05:00
|
|
|
}
|
2017-01-30 06:17:56 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
impl_lint_pass!(LargeEnumVariant => [LARGE_ENUM_VARIANT]);
|
2017-01-30 06:17:56 -06:00
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for LargeEnumVariant {
|
|
|
|
fn check_item(&mut self, cx: &LateContext<'_>, item: &Item<'_>) {
|
2021-01-02 09:29:43 -06:00
|
|
|
if in_external_macro(cx.tcx.sess, item.span) {
|
|
|
|
return;
|
|
|
|
}
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ItemKind::Enum(ref def, _) = item.kind {
|
2021-01-30 10:47:51 -06:00
|
|
|
let ty = cx.tcx.type_of(item.def_id);
|
2018-11-27 14:14:15 -06:00
|
|
|
let adt = ty.ty_adt_def().expect("already checked whether this is an enum");
|
2017-02-04 21:12:55 -06:00
|
|
|
|
2017-02-06 13:25:38 -06:00
|
|
|
let mut largest_variant: Option<(_, _)> = None;
|
2020-04-08 17:05:20 -05:00
|
|
|
let mut second_variant: Option<(_, _)> = None;
|
2017-02-04 21:12:55 -06:00
|
|
|
|
2017-02-06 13:25:38 -06:00
|
|
|
for (i, variant) in adt.variants.iter().enumerate() {
|
2017-08-09 02:30:56 -05:00
|
|
|
let size: u64 = variant
|
|
|
|
.fields
|
2017-03-02 03:41:20 -06:00
|
|
|
.iter()
|
2018-02-09 07:22:41 -06:00
|
|
|
.filter_map(|f| {
|
2017-04-27 07:00:35 -05:00
|
|
|
let ty = cx.tcx.type_of(f.did);
|
2018-02-09 07:22:41 -06:00
|
|
|
// don't count generics by filtering out everything
|
|
|
|
// that does not have a layout
|
|
|
|
cx.layout_of(ty).ok().map(|l| l.size.bytes())
|
2017-03-02 03:41:20 -06:00
|
|
|
})
|
|
|
|
.sum();
|
2017-02-04 18:42:35 -06:00
|
|
|
|
2017-03-02 03:41:20 -06:00
|
|
|
let grouped = (size, (i, variant));
|
2017-02-06 13:25:38 -06:00
|
|
|
|
2020-04-08 17:05:20 -05:00
|
|
|
if grouped.0 >= largest_variant.map_or(0, |x| x.0) {
|
|
|
|
second_variant = largest_variant;
|
|
|
|
largest_variant = Some(grouped);
|
|
|
|
}
|
2017-01-30 06:17:56 -06:00
|
|
|
}
|
2017-02-04 21:12:55 -06:00
|
|
|
|
2020-04-08 17:05:20 -05:00
|
|
|
if let (Some(largest), Some(second)) = (largest_variant, second_variant) {
|
|
|
|
let difference = largest.0 - second.0;
|
2017-02-04 21:12:55 -06:00
|
|
|
|
|
|
|
if difference > self.maximum_size_difference_allowed {
|
|
|
|
let (i, variant) = largest.1;
|
|
|
|
|
2020-04-15 02:55:02 -05:00
|
|
|
let help_text = "consider boxing the large fields to reduce the total size of the enum";
|
2017-08-09 02:30:56 -05:00
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
LARGE_ENUM_VARIANT,
|
|
|
|
def.variants[i].span,
|
|
|
|
"large size difference between variants",
|
2020-04-17 01:08:00 -05:00
|
|
|
|diag| {
|
|
|
|
diag.span_label(
|
2020-04-15 02:55:02 -05:00
|
|
|
def.variants[(largest.1).0].span,
|
|
|
|
&format!("this variant is {} bytes", largest.0),
|
|
|
|
);
|
2020-04-17 01:08:00 -05:00
|
|
|
diag.span_note(
|
2020-04-15 02:55:02 -05:00
|
|
|
def.variants[(second.1).0].span,
|
|
|
|
&format!("and the second-largest variant is {} bytes:", second.0),
|
|
|
|
);
|
2017-08-09 02:30:56 -05:00
|
|
|
if variant.fields.len() == 1 {
|
2019-08-15 02:59:08 -05:00
|
|
|
let span = match def.variants[i].data {
|
2021-04-08 10:50:13 -05:00
|
|
|
VariantData::Struct(fields, ..) | VariantData::Tuple(fields, ..) => {
|
2017-09-05 04:33:04 -05:00
|
|
|
fields[0].ty.span
|
|
|
|
},
|
2019-02-03 01:12:07 -06:00
|
|
|
VariantData::Unit(..) => unreachable!(),
|
2017-08-09 02:30:56 -05:00
|
|
|
};
|
|
|
|
if let Some(snip) = snippet_opt(cx, span) {
|
2020-04-17 01:08:00 -05:00
|
|
|
diag.span_suggestion(
|
2017-08-09 02:30:56 -05:00
|
|
|
span,
|
2020-04-15 02:55:02 -05:00
|
|
|
help_text,
|
2017-08-09 02:30:56 -05:00
|
|
|
format!("Box<{}>", snip),
|
2018-09-20 07:38:13 -05:00
|
|
|
Applicability::MaybeIncorrect,
|
2017-08-09 02:30:56 -05:00
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
2017-02-04 21:12:55 -06:00
|
|
|
}
|
2020-04-17 01:08:00 -05:00
|
|
|
diag.span_help(def.variants[i].span, help_text);
|
2017-08-09 02:30:56 -05:00
|
|
|
},
|
|
|
|
);
|
2017-02-04 21:12:55 -06:00
|
|
|
}
|
|
|
|
}
|
2017-01-30 06:17:56 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|