Add size-parameter to unecessary_box_returns

Fixes #10641
This commit is contained in:
Lukas Lueg 2023-04-16 13:35:58 +02:00
parent 004981647f
commit 4bc68f9c60
6 changed files with 37 additions and 4 deletions

View File

@ -55,6 +55,7 @@ Please use that command to update the file and do not edit it by hand.
| [suppress-restriction-lint-in-const](#suppress-restriction-lint-in-const) | `false` | | [suppress-restriction-lint-in-const](#suppress-restriction-lint-in-const) | `false` |
| [missing-docs-in-crate-items](#missing-docs-in-crate-items) | `false` | | [missing-docs-in-crate-items](#missing-docs-in-crate-items) | `false` |
| [future-size-threshold](#future-size-threshold) | `16384` | | [future-size-threshold](#future-size-threshold) | `16384` |
| [unnecessary-box-size](#unnecessary-box-size) | `128` |
### arithmetic-side-effects-allowed ### arithmetic-side-effects-allowed
Suppress checking of the passed type names in all types of operations. Suppress checking of the passed type names in all types of operations.
@ -561,4 +562,12 @@ The maximum byte size a `Future` can have, before it triggers the `clippy::large
* [large_futures](https://rust-lang.github.io/rust-clippy/master/index.html#large_futures) * [large_futures](https://rust-lang.github.io/rust-clippy/master/index.html#large_futures)
### unnecessary-box-size
The byte size a `T` in `Box<T>` can have, below which it triggers the `clippy::unnecessary_box` lint
**Default Value:** `128` (`u64`)
* [unnecessary_box_returns](https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_box_returns)

View File

@ -950,9 +950,11 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
store.register_late_pass(|_| Box::new(allow_attributes::AllowAttribute)); store.register_late_pass(|_| Box::new(allow_attributes::AllowAttribute));
store.register_late_pass(move |_| Box::new(manual_main_separator_str::ManualMainSeparatorStr::new(msrv()))); store.register_late_pass(move |_| Box::new(manual_main_separator_str::ManualMainSeparatorStr::new(msrv())));
store.register_late_pass(|_| Box::new(unnecessary_struct_initialization::UnnecessaryStruct)); store.register_late_pass(|_| Box::new(unnecessary_struct_initialization::UnnecessaryStruct));
let unnecessary_box_size = conf.unnecessary_box_size;
store.register_late_pass(move |_| { store.register_late_pass(move |_| {
Box::new(unnecessary_box_returns::UnnecessaryBoxReturns::new( Box::new(unnecessary_box_returns::UnnecessaryBoxReturns::new(
avoid_breaking_exported_api, avoid_breaking_exported_api,
unnecessary_box_size,
)) ))
}); });
store.register_late_pass(|_| Box::new(lines_filter_map_ok::LinesFilterMapOk)); store.register_late_pass(|_| Box::new(lines_filter_map_ok::LinesFilterMapOk));

View File

@ -1,4 +1,4 @@
use clippy_utils::diagnostics::span_lint_and_then; use clippy_utils::{diagnostics::span_lint_and_then, ty::approx_ty_size};
use rustc_errors::Applicability; use rustc_errors::Applicability;
use rustc_hir::{def_id::LocalDefId, FnDecl, FnRetTy, ImplItemKind, Item, ItemKind, Node, TraitItem, TraitItemKind}; use rustc_hir::{def_id::LocalDefId, FnDecl, FnRetTy, ImplItemKind, Item, ItemKind, Node, TraitItem, TraitItemKind};
use rustc_lint::{LateContext, LateLintPass}; use rustc_lint::{LateContext, LateLintPass};
@ -10,6 +10,9 @@
/// ///
/// Checks for a return type containing a `Box<T>` where `T` implements `Sized` /// Checks for a return type containing a `Box<T>` where `T` implements `Sized`
/// ///
/// The lint ignores `Box<T>` where `T` is larger than `unnecessary_box_size`,
/// as returning a large `T` directly may be detrimental to performance.
///
/// ### Why is this bad? /// ### Why is this bad?
/// ///
/// It's better to just return `T` in these cases. The caller may not need /// It's better to just return `T` in these cases. The caller may not need
@ -36,14 +39,16 @@
pub struct UnnecessaryBoxReturns { pub struct UnnecessaryBoxReturns {
avoid_breaking_exported_api: bool, avoid_breaking_exported_api: bool,
maximum_size: u64,
} }
impl_lint_pass!(UnnecessaryBoxReturns => [UNNECESSARY_BOX_RETURNS]); impl_lint_pass!(UnnecessaryBoxReturns => [UNNECESSARY_BOX_RETURNS]);
impl UnnecessaryBoxReturns { impl UnnecessaryBoxReturns {
pub fn new(avoid_breaking_exported_api: bool) -> Self { pub fn new(avoid_breaking_exported_api: bool, maximum_size: u64) -> Self {
Self { Self {
avoid_breaking_exported_api, avoid_breaking_exported_api,
maximum_size,
} }
} }
@ -71,8 +76,10 @@ fn check_fn_item(&mut self, cx: &LateContext<'_>, decl: &FnDecl<'_>, def_id: Loc
let boxed_ty = return_ty.boxed_ty(); let boxed_ty = return_ty.boxed_ty();
// it's sometimes useful to return Box<T> if T is unsized, so don't lint those // It's sometimes useful to return Box<T> if T is unsized, so don't lint those.
if boxed_ty.is_sized(cx.tcx, cx.param_env) { // Also, don't lint if we know that T is very large, in which case returning
// a Box<T> may be beneficial.
if boxed_ty.is_sized(cx.tcx, cx.param_env) && approx_ty_size(cx, boxed_ty) <= self.maximum_size {
span_lint_and_then( span_lint_and_then(
cx, cx,
UNNECESSARY_BOX_RETURNS, UNNECESSARY_BOX_RETURNS,

View File

@ -463,6 +463,10 @@ pub(crate) fn get_configuration_metadata() -> Vec<ClippyConfiguration> {
/// ///
/// The maximum byte size a `Future` can have, before it triggers the `clippy::large_futures` lint /// The maximum byte size a `Future` can have, before it triggers the `clippy::large_futures` lint
(future_size_threshold: u64 = 16 * 1024), (future_size_threshold: u64 = 16 * 1024),
/// Lint: UNNECESSARY_BOX_RETURNS.
///
/// The byte size a `T` in `Box<T>` can have, below which it triggers the `clippy::unnecessary_box` lint
(unnecessary_box_size: u64 = 128),
} }
/// Search for the configuration file. /// Search for the configuration file.

View File

@ -46,6 +46,7 @@ error: error reading Clippy's configuration file `$DIR/clippy.toml`: unknown fie
too-many-lines-threshold too-many-lines-threshold
trivial-copy-size-limit trivial-copy-size-limit
type-complexity-threshold type-complexity-threshold
unnecessary-box-size
unreadable-literal-lint-fractions unreadable-literal-lint-fractions
upper-case-acronyms-aggressive upper-case-acronyms-aggressive
vec-box-size-threshold vec-box-size-threshold

View File

@ -54,6 +54,16 @@ fn string() -> String {
String::from("Hello, world") String::from("Hello, world")
} }
struct Huge([u8; 500]);
struct HasHuge(Box<Huge>);
impl HasHuge {
// don't lint: The size of `Huge` is very large
fn into_huge(self) -> Box<Huge> {
self.0
}
}
fn main() { fn main() {
// don't lint: this is a closure // don't lint: this is a closure
let a = || -> Box<usize> { Box::new(5) }; let a = || -> Box<usize> { Box::new(5) };