]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/src/large_enum_variant.rs
Replace some std::iter::repeat with str::repeat
[rust.git] / clippy_lints / src / large_enum_variant.rs
index f656d513b516cb3d49f8f2af59d5261e3d7742f1..f166748d86b81a021822759440e66456206309b5 100644 (file)
 //! lint when there is a large size difference between variants on an enum
 
-use rustc::lint::*;
-use rustc::hir::*;
-use utils::{span_lint_and_then, snippet_opt};
-use rustc::ty::layout::TargetDataLayout;
-use rustc::ty::TypeFoldable;
-use rustc::traits::Reveal;
+use clippy_utils::diagnostics::span_lint_and_then;
+use clippy_utils::source::snippet_opt;
+use rustc_errors::Applicability;
+use rustc_hir::{Item, ItemKind, VariantData};
+use rustc_lint::{LateContext, LateLintPass};
+use rustc_middle::lint::in_external_macro;
+use rustc_session::{declare_tool_lint, impl_lint_pass};
+use rustc_target::abi::LayoutOf;
 
-/// **What it does:** Checks for large size differences between variants on `enum`s.
-///
-/// **Why is this bad?** Enum size is bounded by the largest variant. Having a large variant
-/// can penalize the memory layout of that enum.
-///
-/// **Known problems:** None.
-///
-/// **Example:**
-/// ```rust
-/// enum Test {
-///    A(i32),
-///    B([i32; 8000]),
-/// }
-/// ```
-declare_lint! {
+declare_clippy_lint! {
+    /// **What it does:** Checks for large size differences between variants on
+    /// `enum`s.
+    ///
+    /// **Why is this bad?** Enum size is bounded by the largest variant. Having a
+    /// large variant can penalize the memory layout of that enum.
+    ///
+    /// **Known problems:** This lint obviously cannot take the distribution of
+    /// 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.
+    ///
+    /// **Example:**
+    ///
+    /// ```rust
+    /// // Bad
+    /// enum Test {
+    ///     A(i32),
+    ///     B([i32; 8000]),
+    /// }
+    ///
+    /// // Possibly better
+    /// enum Test2 {
+    ///     A(i32),
+    ///     B(Box<[i32; 8000]>),
+    /// }
+    /// ```
     pub LARGE_ENUM_VARIANT,
-    Warn,
+    perf,
     "large size difference between variants on an enum"
 }
 
-#[derive(Copy,Clone)]
+#[derive(Copy, Clone)]
 pub struct LargeEnumVariant {
     maximum_size_difference_allowed: u64,
 }
 
 impl LargeEnumVariant {
+    #[must_use]
     pub fn new(maximum_size_difference_allowed: u64) -> Self {
-        LargeEnumVariant { maximum_size_difference_allowed: maximum_size_difference_allowed }
+        Self {
+            maximum_size_difference_allowed,
+        }
     }
 }
 
-impl LintPass for LargeEnumVariant {
-    fn get_lints(&self) -> LintArray {
-        lint_array!(LARGE_ENUM_VARIANT)
-    }
-}
+impl_lint_pass!(LargeEnumVariant => [LARGE_ENUM_VARIANT]);
 
-impl<'a, 'tcx> LateLintPass<'a, 'tcx> for LargeEnumVariant {
-    fn check_item(&mut self, cx: &LateContext, item: &Item) {
-        let did = cx.tcx.hir.local_def_id(item.id);
-        if let ItemEnum(ref def, _) = item.node {
-            let ty = cx.tcx.item_type(did);
+impl<'tcx> LateLintPass<'tcx> for LargeEnumVariant {
+    fn check_item(&mut self, cx: &LateContext<'_>, item: &Item<'_>) {
+        if in_external_macro(cx.tcx.sess, item.span) {
+            return;
+        }
+        if let ItemKind::Enum(ref def, _) = item.kind {
+            let ty = cx.tcx.type_of(item.def_id);
             let adt = ty.ty_adt_def().expect("already checked whether this is an enum");
 
-            let mut smallest_variant: Option<(_, _)> = None;
             let mut largest_variant: Option<(_, _)> = None;
+            let mut second_variant: Option<(_, _)> = None;
 
             for (i, variant) in adt.variants.iter().enumerate() {
-                let data_layout = TargetDataLayout::parse(cx.sess());
-                cx.tcx.infer_ctxt((), Reveal::All).enter(|infcx| {
-                    let size: u64 = variant.fields
-                        .iter()
-                        .map(|f| {
-                            let ty = cx.tcx.item_type(f.did);
-                            if ty.needs_subst() {
-                                0 // we can't reason about generics, so we treat them as zero sized
-                            } else {
-                                ty.layout(&infcx)
-                                    .expect("layout should be computable for concrete type")
-                                    .size(&data_layout)
-                                    .bytes()
-                            }
-                        })
-                        .sum();
+                let size: u64 = variant
+                    .fields
+                    .iter()
+                    .filter_map(|f| {
+                        let ty = cx.tcx.type_of(f.did);
+                        // don't count generics by filtering out everything
+                        // that does not have a layout
+                        cx.layout_of(ty).ok().map(|l| l.size.bytes())
+                    })
+                    .sum();
 
-                    let grouped = (size, (i, variant));
+                let grouped = (size, (i, variant));
 
-                    update_if(&mut smallest_variant, grouped, |a, b| b.0 <= a.0);
-                    update_if(&mut largest_variant, grouped, |a, b| b.0 >= a.0);
-                });
+                if grouped.0 >= largest_variant.map_or(0, |x| x.0) {
+                    second_variant = largest_variant;
+                    largest_variant = Some(grouped);
+                }
             }
 
-            if let (Some(smallest), Some(largest)) = (smallest_variant, largest_variant) {
-                let difference = largest.0 - smallest.0;
+            if let (Some(largest), Some(second)) = (largest_variant, second_variant) {
+                let difference = largest.0 - second.0;
 
                 if difference > self.maximum_size_difference_allowed {
                     let (i, variant) = largest.1;
 
-                    span_lint_and_then(cx,
-                                       LARGE_ENUM_VARIANT,
-                                       def.variants[i].span,
-                                       "large size difference between variants",
-                                       |db| {
-                        if variant.fields.len() == 1 {
-                            let span = match def.variants[i].node.data {
-                                VariantData::Struct(ref fields, _) |
-                                VariantData::Tuple(ref fields, _) => fields[0].ty.span,
-                                VariantData::Unit(_) => unreachable!(),
-                            };
-                            if let Some(snip) = snippet_opt(cx, span) {
-                                db.span_suggestion(span,
-                                                   "consider boxing the large fields to reduce the total size of the \
-                                                    enum",
-                                                   format!("Box<{}>", snip));
-                                return;
+                    let help_text = "consider boxing the large fields to reduce the total size of the enum";
+                    span_lint_and_then(
+                        cx,
+                        LARGE_ENUM_VARIANT,
+                        def.variants[i].span,
+                        "large size difference between variants",
+                        |diag| {
+                            diag.span_label(
+                                def.variants[(largest.1).0].span,
+                                &format!("this variant is {} bytes", largest.0),
+                            );
+                            diag.span_note(
+                                def.variants[(second.1).0].span,
+                                &format!("and the second-largest variant is {} bytes:", second.0),
+                            );
+                            if variant.fields.len() == 1 {
+                                let span = match def.variants[i].data {
+                                    VariantData::Struct(fields, ..) | VariantData::Tuple(fields, ..) => {
+                                        fields[0].ty.span
+                                    },
+                                    VariantData::Unit(..) => unreachable!(),
+                                };
+                                if let Some(snip) = snippet_opt(cx, span) {
+                                    diag.span_suggestion(
+                                        span,
+                                        help_text,
+                                        format!("Box<{}>", snip),
+                                        Applicability::MaybeIncorrect,
+                                    );
+                                    return;
+                                }
                             }
-                        }
-                        db.span_help(def.variants[i].span,
-                                     "consider boxing the large fields to reduce the total size of the enum");
-                    });
+                            diag.span_help(def.variants[i].span, help_text);
+                        },
+                    );
                 }
             }
-
-        }
-    }
-}
-
-fn update_if<T, F>(old: &mut Option<T>, new: T, f: F)
-    where F: Fn(&T, &T) -> bool
-{
-    if let Some(ref mut val) = *old {
-        if f(val, &new) {
-            *val = new;
         }
-    } else {
-        *old = Some(new);
     }
 }