rust/clippy_lints/src/escape.rs

165 lines
4.9 KiB
Rust
Raw Normal View History

2020-02-18 07:28:18 -06:00
use rustc_hir::intravisit;
2020-02-21 02:39:38 -06:00
use rustc_hir::{self, Body, FnDecl, HirId, HirIdSet, ItemKind, Node};
2020-02-16 20:07:26 -06:00
use rustc_infer::infer::TyCtxtInferExt;
2020-01-12 00:08:41 -06:00
use rustc_lint::{LateContext, LateLintPass};
use rustc_middle::ty::{self, Ty};
2020-01-11 05:37:08 -06:00
use rustc_session::{declare_tool_lint, impl_lint_pass};
use rustc_span::source_map::Span;
2020-04-02 15:29:41 -05:00
use rustc_target::abi::LayoutOf;
2020-02-21 02:39:38 -06:00
use rustc_typeck::expr_use_visitor::{ConsumeMode, Delegate, ExprUseVisitor, Place, PlaceBase};
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>,
2020-02-18 07:28:18 -06:00
_: intravisit::FnKind<'tcx>,
2019-12-29 22:02:10 -06:00
_: &'tcx FnDecl<'_>,
2019-12-22 08:42:41 -06:00
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 {
2020-01-17 23:14:36 -06:00
if let ItemKind::Impl { of_trait: Some(_), .. } = item.kind {
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);
2019-11-29 04:12:19 -06:00
cx.tcx.infer_ctxt().enter(|infcx| {
ExprUseVisitor::new(&mut v, &infcx, fn_def_id.to_def_id(), cx.param_env, cx.tables).consume_body(body);
2019-11-29 04:12:19 -06:00
});
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: rustc_middle::hir::map::Map<'_>, id: HirId) -> bool {
match map.find(id) {
Some(Node::Binding(_)) => (),
_ => return false,
}
match map.find(map.get_parent_node(id)) {
2019-08-28 04:27:06 -05:00
Some(Node::Param(_)) => true,
_ => false,
}
}
impl<'a, 'tcx> Delegate<'tcx> for EscapeDelegate<'a, 'tcx> {
2019-11-28 09:09:02 -06:00
fn consume(&mut self, cmt: &Place<'tcx>, mode: ConsumeMode) {
if cmt.projections.is_empty() {
if let PlaceBase::Local(lid) = cmt.base {
if let ConsumeMode::Move = mode {
// moved out or in. clearly can't be localized
self.set.remove(&lid);
}
let map = &self.cx.tcx.hir();
if let Some(Node::Binding(_)) = map.find(cmt.hir_id) {
if self.set.contains(&lid) {
// let y = x where x is known
// remove x, insert y
self.set.insert(cmt.hir_id);
self.set.remove(&lid);
}
}
2015-12-04 04:12:53 -06:00
}
}
}
2019-11-28 09:09:02 -06:00
fn borrow(&mut self, cmt: &Place<'tcx>, _: ty::BorrowKind) {
if cmt.projections.is_empty() {
if let PlaceBase::Local(lid) = cmt.base {
self.set.remove(&lid);
}
2015-12-04 04:12:53 -06:00
}
}
2019-11-28 09:09:02 -06:00
fn mutate(&mut self, cmt: &Place<'tcx>) {
if cmt.projections.is_empty() {
let map = &self.cx.tcx.hir();
if is_argument(*map, cmt.hir_id) {
// Skip closure arguments
let parent_id = map.get_parent_node(cmt.hir_id);
if let Some(Node::Expr(..)) = map.find(map.get_parent_node(parent_id)) {
return;
}
2019-10-06 07:49:26 -05:00
if is_non_trait_box(cmt.ty) && !self.is_large_box(cmt.ty) {
self.set.insert(cmt.hir_id);
}
return;
2019-10-06 07:49:26 -05:00
}
}
}
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() {
2019-11-26 08:14:28 -06:00
self.cx.layout_of(ty.boxed_ty()).map_or(0, |l| l.size.bytes()) > self.too_large_for_stack
} else {
false
2016-07-10 08:23:50 -05:00
}
}
}