2020-01-11 12:37:08 +01:00
|
|
|
use rustc::lint::{LateContext, LateLintPass};
|
2018-12-29 16:04:45 +01:00
|
|
|
use rustc::ty::layout::LayoutOf;
|
2019-02-22 06:06:51 +01:00
|
|
|
use rustc::ty::{self, Ty};
|
2020-01-09 08:13:22 +01:00
|
|
|
use rustc_hir::intravisit as visit;
|
2020-01-06 17:39:50 +01:00
|
|
|
use rustc_hir::HirIdSet;
|
|
|
|
use rustc_hir::{self, *};
|
2020-01-11 12:37:08 +01:00
|
|
|
use rustc_session::{declare_tool_lint, impl_lint_pass};
|
2020-01-04 11:00:00 +01:00
|
|
|
use rustc_span::source_map::Span;
|
2019-11-29 11:12:19 +01:00
|
|
|
use rustc_typeck::expr_use_visitor::*;
|
2015-12-04 11:12:53 +01:00
|
|
|
|
2019-01-31 02:15:29 +01:00
|
|
|
use crate::utils::span_lint;
|
|
|
|
|
2019-04-08 22:43:55 +02:00
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub struct BoxedLocal {
|
2016-07-10 15:23:50 +02:00
|
|
|
pub too_large_for_stack: u64,
|
|
|
|
}
|
2015-12-04 11:12:53 +01:00
|
|
|
|
2018-03-28 15:24:26 +02:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 17:50:33 +01:00
|
|
|
/// **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
|
2019-08-03 08:01:27 +02:00
|
|
|
/// # fn foo(bar: usize) {}
|
|
|
|
/// let x = Box::new(1);
|
|
|
|
/// foo(*x);
|
|
|
|
/// println!("{}", *x);
|
2019-03-05 17:50:33 +01:00
|
|
|
/// ```
|
2016-08-06 10:18:36 +02:00
|
|
|
pub BOXED_LOCAL,
|
2018-03-28 15:24:26 +02:00
|
|
|
perf,
|
2016-08-06 10:18:36 +02:00
|
|
|
"using `Box<T>` where unnecessary"
|
2016-02-06 00:13:29 +01:00
|
|
|
}
|
2015-12-04 11:12:53 +01:00
|
|
|
|
2018-07-23 13:01:12 +02:00
|
|
|
fn is_non_trait_box(ty: Ty<'_>) -> bool {
|
2017-02-03 11:52:13 +01:00
|
|
|
ty.is_box() && !ty.boxed_ty().is_trait()
|
2015-12-28 15:12:57 +01:00
|
|
|
}
|
|
|
|
|
2019-06-19 20:36:23 +02:00
|
|
|
struct EscapeDelegate<'a, 'tcx> {
|
2017-06-11 04:34:47 +02:00
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
2019-03-01 13:26:06 +01:00
|
|
|
set: HirIdSet,
|
2016-07-10 15:23:50 +02:00
|
|
|
too_large_for_stack: u64,
|
2015-12-04 11:12:53 +01:00
|
|
|
}
|
|
|
|
|
2019-04-08 22:43:55 +02:00
|
|
|
impl_lint_pass!(BoxedLocal => [BOXED_LOCAL]);
|
2019-01-26 20:40:55 +01:00
|
|
|
|
2019-04-08 22:43:55 +02:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for BoxedLocal {
|
2016-12-21 10:25:14 +01:00
|
|
|
fn check_fn(
|
2016-12-21 12:14:54 +01:00
|
|
|
&mut self,
|
|
|
|
cx: &LateContext<'a, 'tcx>,
|
|
|
|
_: visit::FnKind<'tcx>,
|
2019-12-30 05:02:10 +01:00
|
|
|
_: &'tcx FnDecl<'_>,
|
2019-12-22 15:42:41 +01:00
|
|
|
body: &'tcx Body<'_>,
|
2016-12-21 12:14:54 +01:00
|
|
|
_: Span,
|
2019-02-20 11:11:11 +01:00
|
|
|
hir_id: HirId,
|
2016-12-21 10:25:14 +01:00
|
|
|
) {
|
2019-01-31 02:15:29 +01:00
|
|
|
// If the method is an impl for a trait, don't warn.
|
2019-02-20 11:11:11 +01:00
|
|
|
let parent_id = cx.tcx.hir().get_parent_item(hir_id);
|
2019-06-25 23:34:07 +02:00
|
|
|
let parent_node = cx.tcx.hir().find(parent_id);
|
2018-10-15 20:20:50 +02:00
|
|
|
|
|
|
|
if let Some(Node::Item(item)) = parent_node {
|
2019-09-27 17:16:06 +02:00
|
|
|
if let ItemKind::Impl(_, _, _, _, Some(..), _, _) = item.kind {
|
2018-10-15 20:20:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-04 11:12:53 +01:00
|
|
|
let mut v = EscapeDelegate {
|
2018-03-15 16:07:15 +01:00
|
|
|
cx,
|
2019-03-01 13:26:06 +01:00
|
|
|
set: HirIdSet::default(),
|
2016-07-10 15:23:50 +02:00
|
|
|
too_large_for_stack: self.too_large_for_stack,
|
2015-12-04 11:12:53 +01:00
|
|
|
};
|
2016-05-12 19:11:13 +02:00
|
|
|
|
2019-07-06 05:52:51 +02:00
|
|
|
let fn_def_id = cx.tcx.hir().local_def_id(hir_id);
|
2019-11-29 11:12:19 +01:00
|
|
|
cx.tcx.infer_ctxt().enter(|infcx| {
|
|
|
|
ExprUseVisitor::new(&mut v, &infcx, fn_def_id, cx.param_env, cx.tables).consume_body(body);
|
|
|
|
});
|
2016-05-12 19:11:13 +02:00
|
|
|
|
2019-02-22 06:06:51 +01:00
|
|
|
for node in v.set {
|
2017-08-09 09:30:56 +02:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
BOXED_LOCAL,
|
2019-06-18 11:15:47 +02:00
|
|
|
cx.tcx.hir().span(node),
|
2017-08-09 09:30:56 +02:00
|
|
|
"local variable doesn't need to be boxed here",
|
|
|
|
);
|
2015-12-04 11:12:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-30 06:37:49 +02:00
|
|
|
// TODO: Replace with Map::is_argument(..) when it's fixed
|
2020-01-06 17:39:50 +01:00
|
|
|
fn is_argument(map: &rustc::hir::map::Map<'_>, id: HirId) -> bool {
|
2019-07-30 06:37:49 +02:00
|
|
|
match map.find(id) {
|
|
|
|
Some(Node::Binding(_)) => (),
|
|
|
|
_ => return false,
|
|
|
|
}
|
|
|
|
|
|
|
|
match map.find(map.get_parent_node(id)) {
|
2019-08-28 11:27:06 +02:00
|
|
|
Some(Node::Param(_)) => true,
|
2019-07-30 06:37:49 +02:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-11 04:34:47 +02:00
|
|
|
impl<'a, 'tcx> Delegate<'tcx> for EscapeDelegate<'a, 'tcx> {
|
2019-11-28 16:09:02 +01:00
|
|
|
fn consume(&mut self, cmt: &Place<'tcx>, mode: ConsumeMode) {
|
2019-11-29 12:57:10 +01:00
|
|
|
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
|
2019-10-05 12:23:59 +02:00
|
|
|
self.set.remove(&lid);
|
|
|
|
}
|
2019-11-29 12:57:10 +01:00
|
|
|
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 11:12:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-04 14:24:47 +02:00
|
|
|
|
2019-11-28 16:09:02 +01:00
|
|
|
fn borrow(&mut self, cmt: &Place<'tcx>, _: ty::BorrowKind) {
|
2019-11-29 12:57:10 +01:00
|
|
|
if cmt.projections.is_empty() {
|
|
|
|
if let PlaceBase::Local(lid) = cmt.base {
|
|
|
|
self.set.remove(&lid);
|
|
|
|
}
|
2015-12-04 11:12:53 +01:00
|
|
|
}
|
|
|
|
}
|
2019-10-04 14:24:47 +02:00
|
|
|
|
2019-11-28 16:09:02 +01:00
|
|
|
fn mutate(&mut self, cmt: &Place<'tcx>) {
|
2019-11-29 12:57:10 +01:00
|
|
|
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 14:49:26 +02:00
|
|
|
|
2019-11-29 12:57:10 +01:00
|
|
|
if is_non_trait_box(cmt.ty) && !self.is_large_box(cmt.ty) {
|
|
|
|
self.set.insert(cmt.hir_id);
|
|
|
|
}
|
|
|
|
return;
|
2019-10-06 14:49:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-12-04 11:12:53 +01:00
|
|
|
}
|
2016-07-10 15:23:50 +02:00
|
|
|
|
2017-06-11 04:34:47 +02:00
|
|
|
impl<'a, 'tcx> EscapeDelegate<'a, 'tcx> {
|
2017-06-11 04:57:25 +02:00
|
|
|
fn is_large_box(&self, ty: Ty<'tcx>) -> bool {
|
2019-01-31 02:15:29 +01:00
|
|
|
// Large types need to be boxed to avoid stack overflows.
|
2017-02-03 11:52:13 +01:00
|
|
|
if ty.is_box() {
|
2019-11-26 15:14:28 +01:00
|
|
|
self.cx.layout_of(ty.boxed_ty()).map_or(0, |l| l.size.bytes()) > self.too_large_for_stack
|
2017-06-11 04:34:47 +02:00
|
|
|
} else {
|
|
|
|
false
|
2016-07-10 15:23:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|