-
Notifications
You must be signed in to change notification settings - Fork 1.7k
new large_enum_variants lint #1187
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
//! lint when there are large variants on an enum | ||
|
||
use rustc::lint::*; | ||
use rustc::hir::*; | ||
use utils::span_help_and_lint; | ||
use rustc::ty::layout::TargetDataLayout; | ||
|
||
/// **What it does:** Checks for large variants on enums. | ||
/// | ||
/// **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! { | ||
pub LARGE_ENUM_VARIANT, | ||
Warn, | ||
"large variants on an enum" | ||
} | ||
|
||
#[derive(Copy,Clone)] | ||
pub struct LargeEnumVariant { | ||
maximum_variant_size_allowed: u64, | ||
} | ||
|
||
impl LargeEnumVariant { | ||
pub fn new(maximum_variant_size_allowed: u64) -> Self { | ||
LargeEnumVariant { | ||
maximum_variant_size_allowed: maximum_variant_size_allowed, | ||
} | ||
} | ||
} | ||
|
||
impl LintPass for LargeEnumVariant { | ||
fn get_lints(&self) -> LintArray { | ||
lint_array!(LARGE_ENUM_VARIANT) | ||
} | ||
} | ||
|
||
impl LateLintPass for LargeEnumVariant { | ||
fn check_variant(&mut self, cx: &LateContext, variant: &Variant, _ :&Generics) { | ||
let data_layout = TargetDataLayout::parse(cx.sess()); | ||
let param_env = cx.tcx.empty_parameter_environment(); | ||
let infcx = cx.tcx.borrowck_fake_infer_ctxt(param_env); | ||
let mut variant_size = 0; | ||
|
||
for field in variant.node.data.fields() { | ||
let ty = cx.tcx.node_id_to_type(field.id); | ||
if let Ok(layout) = ty.layout(&infcx) { | ||
variant_size += layout.size(&data_layout).bytes(); | ||
} | ||
} | ||
|
||
if variant_size > self.maximum_variant_size_allowed { | ||
span_help_and_lint( | ||
cx, | ||
LARGE_ENUM_VARIANT, | ||
variant.span, | ||
&format!("large enum variant found on variant `{}`", variant.node.name), | ||
"consider boxing the large branches to reduce the total size of the enum", | ||
); | ||
} | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#![feature(plugin)] | ||
#![plugin(clippy)] | ||
|
||
#![allow(dead_code)] | ||
#![allow(unused_variables)] | ||
#![deny(large_enum_variant)] | ||
|
||
enum LargeEnum { | ||
A(i32), | ||
B([i32; 8000]), //~ ERROR large enum variant found on variant `B` | ||
} | ||
|
||
enum AnotherLargeEnum { | ||
VariantOk(i32, u32), | ||
ContainingLargeEnum(LargeEnum), //~ ERROR large enum variant found on variant `ContainingLargeEnum` | ||
ContainingMoreThanOneField(i32, [i32; 8000], [i32; 9500]), //~ ERROR large enum variant found on variant `ContainingMoreThanOneField` | ||
VoidVariant, | ||
StructLikeLittle { x: i32, y: i32 }, | ||
StructLikeLarge { x: [i32; 8000], y: i32 }, //~ ERROR large enum variant found on variant `StructLikeLarge` | ||
} | ||
|
||
fn main() { | ||
|
||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Used the same value as 'too-large-for-stack'. I don't know which value use as default
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's already quite big for an enum variant IMO.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So is the default value ok? Should I leave it to 200?