rust/clippy_lints/src/escape.rs

209 lines
6.4 KiB
Rust
Raw Normal View History

use rustc::hir::intravisit as visit;
use rustc::hir::{self, *};
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
use rustc::middle::expr_use_visitor::*;
use rustc::middle::mem_categorization::{cmt_, Categorization};
use rustc::ty::layout::LayoutOf;
use rustc::ty::{self, Ty};
2019-03-01 06:26:06 -06:00
use rustc::util::nodemap::HirIdSet;
2019-04-08 15:43:55 -05:00
use rustc::{declare_tool_lint, impl_lint_pass};
use syntax::source_map::Span;
2015-12-04 04:12:53 -06:00
2019-01-30 19:15:29 -06:00
use crate::utils::span_lint;
2019-04-08 15:43:55 -05:00
#[derive(Copy, Clone)]
pub struct BoxedLocal {
2016-07-10 08:23:50 -05:00
pub too_large_for_stack: u64,
}
2015-12-04 04:12:53 -06:00
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
/// **What it does:** Checks for usage of `Box<T>` where an unboxed `T` would
/// work fine.
///
/// **Why is this bad?** This is an unnecessary allocation, and bad for
/// performance. It is only necessary to allocate if you wish to move the box
/// into something.
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust
/// # fn foo(bar: usize) {}
/// let x = Box::new(1);
/// foo(*x);
/// println!("{}", *x);
/// ```
pub BOXED_LOCAL,
2018-03-28 08:24:26 -05:00
perf,
"using `Box<T>` where unnecessary"
}
2015-12-04 04:12:53 -06:00
2018-07-23 06:01:12 -05:00
fn is_non_trait_box(ty: Ty<'_>) -> bool {
2017-02-03 04:52:13 -06:00
ty.is_box() && !ty.boxed_ty().is_trait()
2015-12-28 08:12:57 -06:00
}
struct EscapeDelegate<'a, 'tcx> {
cx: &'a LateContext<'a, 'tcx>,
2019-03-01 06:26:06 -06:00
set: HirIdSet,
2016-07-10 08:23:50 -05:00
too_large_for_stack: u64,
2015-12-04 04:12:53 -06:00
}
2019-04-08 15:43:55 -05:00
impl_lint_pass!(BoxedLocal => [BOXED_LOCAL]);
2019-04-08 15:43:55 -05:00
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for BoxedLocal {
fn check_fn(
&mut self,
cx: &LateContext<'a, 'tcx>,
_: visit::FnKind<'tcx>,
_: &'tcx FnDecl,
body: &'tcx Body,
_: Span,
2019-02-20 04:11:11 -06:00
hir_id: HirId,
) {
2019-01-30 19:15:29 -06:00
// If the method is an impl for a trait, don't warn.
2019-02-20 04:11:11 -06:00
let parent_id = cx.tcx.hir().get_parent_item(hir_id);
2019-06-25 16:34:07 -05:00
let parent_node = cx.tcx.hir().find(parent_id);
if let Some(Node::Item(item)) = parent_node {
if let ItemKind::Impl(_, _, _, _, Some(..), _, _) = item.node {
return;
}
}
2015-12-04 04:12:53 -06:00
let mut v = EscapeDelegate {
cx,
2019-03-01 06:26:06 -06:00
set: HirIdSet::default(),
2016-07-10 08:23:50 -05:00
too_large_for_stack: self.too_large_for_stack,
2015-12-04 04:12:53 -06:00
};
let fn_def_id = cx.tcx.hir().local_def_id(hir_id);
2017-09-04 09:10:36 -05:00
let region_scope_tree = &cx.tcx.region_scope_tree(fn_def_id);
2019-06-02 11:58:11 -05:00
ExprUseVisitor::new(
&mut v,
cx.tcx,
fn_def_id,
cx.param_env,
region_scope_tree,
cx.tables,
None,
)
.consume_body(body);
for node in v.set {
2017-08-09 02:30:56 -05:00
span_lint(
cx,
BOXED_LOCAL,
cx.tcx.hir().span(node),
2017-08-09 02:30:56 -05:00
"local variable doesn't need to be boxed here",
);
2015-12-04 04:12:53 -06:00
}
}
}
// TODO: Replace with Map::is_argument(..) when it's fixed
fn is_argument(map: &hir::map::Map<'_>, id: HirId) -> bool {
match map.find(id) {
Some(Node::Binding(_)) => (),
_ => return false,
}
match map.find(map.get_parent_node(id)) {
Some(Node::Arg(_)) => true,
_ => false,
}
}
impl<'a, 'tcx> Delegate<'tcx> for EscapeDelegate<'a, 'tcx> {
2019-02-24 12:43:15 -06:00
fn consume(&mut self, _: HirId, _: Span, cmt: &cmt_<'tcx>, mode: ConsumeMode) {
2015-12-04 04:12:53 -06:00
if let Categorization::Local(lid) = cmt.cat {
if let Move(DirectRefMove) | Move(CaptureMove) = mode {
2017-06-04 16:28:01 -05:00
// moved out or in. clearly can't be localized
self.set.remove(&lid);
2015-12-04 04:12:53 -06:00
}
}
}
fn matched_pat(&mut self, _: &Pat, _: &cmt_<'tcx>, _: MatchMode) {}
fn consume_pat(&mut self, consume_pat: &Pat, cmt: &cmt_<'tcx>, _: ConsumeMode) {
let map = &self.cx.tcx.hir();
if is_argument(map, consume_pat.hir_id) {
// Skip closure arguments
let parent_id = map.get_parent_node(consume_pat.hir_id);
if let Some(Node::Expr(..)) = map.find(map.get_parent_node(parent_id)) {
return;
}
2016-07-10 08:23:50 -05:00
if is_non_trait_box(cmt.ty) && !self.is_large_box(cmt.ty) {
2019-03-01 06:26:06 -06:00
self.set.insert(consume_pat.hir_id);
2015-12-28 08:12:57 -06:00
}
return;
}
2015-12-04 04:12:53 -06:00
if let Categorization::Rvalue(..) = cmt.cat {
2019-06-25 16:34:07 -05:00
if let Some(Node::Stmt(st)) = map.find(map.get_parent_node(cmt.hir_id)) {
if let StmtKind::Local(ref loc) = st.node {
2019-01-20 04:49:45 -06:00
if let Some(ref ex) = loc.init {
if let ExprKind::Box(..) = ex.node {
if is_non_trait_box(cmt.ty) && !self.is_large_box(cmt.ty) {
// let x = box (...)
2019-03-01 06:26:06 -06:00
self.set.insert(consume_pat.hir_id);
2015-12-04 04:12:53 -06:00
}
2019-01-20 04:49:45 -06:00
// TODO Box::new
// TODO vec![]
// TODO "foo".to_owned() and friends
2015-12-04 04:12:53 -06:00
}
}
}
}
2019-01-20 04:49:45 -06:00
}
2015-12-04 04:12:53 -06:00
if let Categorization::Local(lid) = cmt.cat {
if self.set.contains(&lid) {
// let y = x where x is known
// remove x, insert y
2019-03-01 06:26:06 -06:00
self.set.insert(consume_pat.hir_id);
2015-12-04 04:12:53 -06:00
self.set.remove(&lid);
}
}
}
2018-11-27 14:14:15 -06:00
fn borrow(
&mut self,
2019-02-24 12:43:15 -06:00
_: HirId,
2018-11-27 14:14:15 -06:00
_: Span,
cmt: &cmt_<'tcx>,
_: ty::Region<'_>,
_: ty::BorrowKind,
loan_cause: LoanCause,
) {
2015-12-04 04:12:53 -06:00
if let Categorization::Local(lid) = cmt.cat {
2017-06-04 16:28:01 -05:00
match loan_cause {
2019-01-30 19:15:29 -06:00
// `x.foo()`
// Used without autoderef-ing (i.e., `x.clone()`).
2017-06-04 16:28:01 -05:00
LoanCause::AutoRef |
2015-12-04 04:12:53 -06:00
2019-01-30 19:15:29 -06:00
// `&x`
// `foo(&x)` where no extra autoref-ing is happening.
2017-06-04 16:28:01 -05:00
LoanCause::AddrOf |
2019-01-30 19:15:29 -06:00
// `match x` can move.
2017-06-04 16:28:01 -05:00
LoanCause::MatchDiscriminant => {
self.set.remove(&lid);
2015-12-04 04:12:53 -06:00
}
2017-06-04 16:28:01 -05:00
2019-01-30 19:15:29 -06:00
// Do nothing for matches, etc. These can't escape.
2017-06-04 16:28:01 -05:00
_ => {}
2015-12-04 04:12:53 -06:00
}
}
}
2019-03-01 06:26:06 -06:00
fn decl_without_init(&mut self, _: HirId, _: Span) {}
2019-02-24 12:43:15 -06:00
fn mutate(&mut self, _: HirId, _: Span, _: &cmt_<'tcx>, _: MutateMode) {}
2015-12-04 04:12:53 -06:00
}
2016-07-10 08:23:50 -05:00
impl<'a, 'tcx> EscapeDelegate<'a, 'tcx> {
fn is_large_box(&self, ty: Ty<'tcx>) -> bool {
2019-01-30 19:15:29 -06:00
// Large types need to be boxed to avoid stack overflows.
2017-02-03 04:52:13 -06:00
if ty.is_box() {
self.cx.layout_of(ty.boxed_ty()).ok().map_or(0, |l| l.size.bytes()) > self.too_large_for_stack
} else {
false
2016-07-10 08:23:50 -05:00
}
}
}