rust-clippy/clippy_lints/src/escape.rs

190 lines
5.8 KiB
Rust
Raw Normal View History

use rustc::hir::*;
use rustc::hir::intravisit as visit;
use rustc::hir::map::Node::{NodeExpr, NodeStmt};
2016-02-24 16:38:57 +00:00
use rustc::lint::*;
2015-12-04 10:12:53 +00:00
use rustc::middle::expr_use_visitor::*;
use rustc::middle::mem_categorization::{cmt, Categorization};
use rustc::ty;
2015-12-04 10:12:53 +00:00
use rustc::util::nodemap::NodeSet;
use syntax::ast::NodeId;
use syntax::codemap::Span;
use utils::span_lint;
2016-07-10 13:23:50 +00:00
pub struct Pass {
pub too_large_for_stack: u64,
}
2015-12-04 10:12:53 +00:00
/// **What it does:** Checks for usage of `Box<T>` where an unboxed `T` would
/// work fine.
2015-12-13 03:38:58 +00:00
///
/// **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.
2015-12-13 03:38:58 +00:00
///
/// **Known problems:** None.
2015-12-13 03:38:58 +00:00
///
/// **Example:**
/// ```rust
/// fn main() {
/// let x = Box::new(1);
/// foo(*x);
/// println!("{}", *x);
/// }
2015-12-14 20:17:11 +00:00
/// ```
declare_lint! {
pub BOXED_LOCAL,
Warn,
"using `Box<T>` where unnecessary"
}
2015-12-04 10:12:53 +00:00
2016-02-01 19:37:07 +00:00
fn is_non_trait_box(ty: ty::Ty) -> bool {
2017-02-03 10:52:13 +00:00
ty.is_box() && !ty.boxed_ty().is_trait()
2015-12-28 14:12:57 +00:00
}
struct EscapeDelegate<'a, 'tcx: 'a> {
2015-12-04 10:12:53 +00:00
set: NodeSet,
tcx: ty::TyCtxt<'a, 'tcx, 'tcx>,
2017-06-04 21:28:01 +00:00
param_env: ty::ParamEnv<'tcx>,
2016-07-10 13:23:50 +00:00
too_large_for_stack: u64,
2015-12-04 10:12:53 +00:00
}
2016-06-10 14:17:20 +00:00
impl LintPass for Pass {
2015-12-04 10:12:53 +00:00
fn get_lints(&self) -> LintArray {
lint_array!(BOXED_LOCAL)
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
fn check_fn(
&mut self,
cx: &LateContext<'a, 'tcx>,
_: visit::FnKind<'tcx>,
_: &'tcx FnDecl,
body: &'tcx Body,
_: Span,
node_id: NodeId
) {
2017-06-04 21:28:01 +00:00
let fn_def_id = cx.tcx.hir.local_def_id(node_id);
let param_env = cx.tcx.param_env(fn_def_id).reveal_all();
2015-12-04 10:12:53 +00:00
let mut v = EscapeDelegate {
set: NodeSet(),
tcx: cx.tcx,
2017-06-04 21:28:01 +00:00
param_env: param_env,
2016-07-10 13:23:50 +00:00
too_large_for_stack: self.too_large_for_stack,
2015-12-04 10:12:53 +00:00
};
2017-06-04 21:28:01 +00:00
cx.tcx.infer_ctxt(body.id()).enter(|infcx| {
let region_maps = &cx.tcx.region_maps(fn_def_id);
2017-06-03 16:41:46 +00:00
let mut vis = ExprUseVisitor::new(&mut v, region_maps, &infcx, param_env);
vis.consume_body(body);
2017-06-04 21:28:01 +00:00
});
2015-12-04 10:12:53 +00:00
for node in v.set {
span_lint(cx,
BOXED_LOCAL,
2017-02-02 16:53:28 +00:00
cx.tcx.hir.span(node),
2015-12-04 10:12:53 +00:00
"local variable doesn't need to be boxed here");
}
}
}
2017-06-04 21:28:01 +00:00
impl<'a, 'gcx: 'tcx, 'tcx> Delegate<'tcx> for EscapeDelegate<'a, 'gcx> {
2016-01-04 04:26:12 +00:00
fn consume(&mut self, _: NodeId, _: Span, cmt: cmt<'tcx>, mode: ConsumeMode) {
2015-12-04 10:12:53 +00:00
if let Categorization::Local(lid) = cmt.cat {
2017-06-04 21:28:01 +00:00
if let Move(DirectRefMove) = mode {
// moved out or in. clearly can't be localized
self.set.remove(&lid);
2015-12-04 10:12:53 +00:00
}
}
}
fn matched_pat(&mut self, _: &Pat, _: cmt<'tcx>, _: MatchMode) {}
fn consume_pat(&mut self, consume_pat: &Pat, cmt: cmt<'tcx>, _: ConsumeMode) {
2017-02-02 16:53:28 +00:00
let map = &self.tcx.hir;
if map.is_argument(consume_pat.id) {
// Skip closure arguments
if let Some(NodeExpr(..)) = map.find(map.get_parent_node(consume_pat.id)) {
return;
}
2016-07-10 13:23:50 +00:00
if is_non_trait_box(cmt.ty) && !self.is_large_box(cmt.ty) {
2015-12-28 14:12:57 +00:00
self.set.insert(consume_pat.id);
}
return;
}
2015-12-04 10:12:53 +00:00
if let Categorization::Rvalue(..) = cmt.cat {
if let Some(NodeStmt(st)) = map.find(map.get_parent_node(cmt.id)) {
2015-12-04 10:12:53 +00:00
if let StmtDecl(ref decl, _) = st.node {
if let DeclLocal(ref loc) = decl.node {
if let Some(ref ex) = loc.init {
if let ExprBox(..) = ex.node {
2016-07-10 13:23:50 +00:00
if is_non_trait_box(cmt.ty) && !self.is_large_box(cmt.ty) {
2015-12-04 10:12:53 +00:00
// let x = box (...)
self.set.insert(consume_pat.id);
}
// TODO Box::new
// TODO vec![]
// TODO "foo".to_owned() and friends
}
}
}
}
}
}
if let Categorization::Local(lid) = cmt.cat {
if self.set.contains(&lid) {
// let y = x where x is known
// remove x, insert y
self.set.insert(consume_pat.id);
self.set.remove(&lid);
}
}
}
fn borrow(
&mut self,
2017-06-04 21:28:01 +00:00
_: NodeId,
_: Span,
cmt: cmt<'tcx>,
_: ty::Region,
_: ty::BorrowKind,
loan_cause: LoanCause
) {
2015-12-04 10:12:53 +00:00
if let Categorization::Local(lid) = cmt.cat {
2017-06-04 21:28:01 +00:00
match loan_cause {
// x.foo()
// Used without autodereffing (i.e. x.clone())
LoanCause::AutoRef |
2015-12-04 10:12:53 +00:00
2017-06-04 21:28:01 +00:00
// &x
// foo(&x) where no extra autoreffing is happening
LoanCause::AddrOf |
// `match x` can move
LoanCause::MatchDiscriminant => {
self.set.remove(&lid);
2015-12-04 10:12:53 +00:00
}
2017-06-04 21:28:01 +00:00
2015-12-04 10:12:53 +00:00
// do nothing for matches, etc. These can't escape
2017-06-04 21:28:01 +00:00
_ => {}
2015-12-04 10:12:53 +00:00
}
}
}
fn decl_without_init(&mut self, _: NodeId, _: Span) {}
2016-01-04 04:26:12 +00:00
fn mutate(&mut self, _: NodeId, _: Span, _: cmt<'tcx>, _: MutateMode) {}
2015-12-04 10:12:53 +00:00
}
2016-07-10 13:23:50 +00:00
impl<'a, 'tcx: 'a> EscapeDelegate<'a, 'tcx> {
2017-06-04 21:28:01 +00:00
fn is_large_box(&self, ty: ty::Ty) -> bool {
2016-07-10 13:23:50 +00:00
// Large types need to be boxed to avoid stack
// overflows.
2017-02-03 10:52:13 +00:00
if ty.is_box() {
2017-06-04 21:28:01 +00:00
if let Some(inner) = self.tcx.lift(&ty.boxed_ty()) {
if let Ok(layout) = inner.layout(self.tcx, self.param_env) {
return layout.size(self.tcx).bytes() > self.too_large_for_stack;
}
}
2016-07-10 13:23:50 +00:00
}
2017-06-04 21:28:01 +00:00
false
2016-07-10 13:23:50 +00:00
}
}