]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/src/escape.rs
Merge branch 'macro-use' into HEAD
[rust.git] / clippy_lints / src / escape.rs
index 3384693c51ec9dc3d056ea9ea8d2e479a9803685..ff5c85b6009e0279a36d77a638ca7f31eba0bf78 100644 (file)
@@ -2,15 +2,15 @@
 use rustc::hir::intravisit as visit;
 use rustc::hir::map::Node::{NodeExpr, NodeStmt};
 use rustc::lint::*;
+use rustc::{declare_lint, lint_array};
 use rustc::middle::expr_use_visitor::*;
-use rustc::middle::mem_categorization::{cmt, Categorization};
-use rustc::ty;
-use rustc::ty::layout::TargetDataLayout;
-use rustc::traits::Reveal;
+use rustc::middle::mem_categorization::{cmt_, Categorization};
+use rustc::ty::{self, Ty};
+use rustc::ty::layout::LayoutOf;
 use rustc::util::nodemap::NodeSet;
 use syntax::ast::NodeId;
 use syntax::codemap::Span;
-use utils::span_lint;
+use crate::utils::span_lint;
 
 pub struct Pass {
     pub too_large_for_stack: u64,
@@ -33,23 +33,19 @@ pub struct Pass {
 ///     println!("{}", *x);
 /// }
 /// ```
-declare_lint! {
+declare_clippy_lint! {
     pub BOXED_LOCAL,
-    Warn,
+    perf,
     "using `Box<T>` where unnecessary"
 }
 
-fn is_non_trait_box(ty: ty::Ty) -> bool {
-    match ty.sty {
-        ty::TyBox(inner) => !inner.is_trait(),
-        _ => false,
-    }
+fn is_non_trait_box(ty: Ty) -> bool {
+    ty.is_box() && !ty.boxed_ty().is_trait()
 }
 
 struct EscapeDelegate<'a, 'tcx: 'a> {
+    cx: &'a LateContext<'a, 'tcx>,
     set: NodeSet,
-    tcx: ty::TyCtxt<'a, 'tcx, 'tcx>,
-    target: TargetDataLayout,
     too_large_for_stack: u64,
 }
 
@@ -67,47 +63,41 @@ fn check_fn(
         _: &'tcx FnDecl,
         body: &'tcx Body,
         _: Span,
-        id: NodeId
+        node_id: NodeId,
     ) {
-        // we store the infcx because it is expensive to recreate
-        // the context each time.
+        let fn_def_id = cx.tcx.hir.local_def_id(node_id);
         let mut v = EscapeDelegate {
+            cx,
             set: NodeSet(),
-            tcx: cx.tcx,
-            target: TargetDataLayout::parse(cx.sess()),
             too_large_for_stack: self.too_large_for_stack,
         };
-        let param_env = ty::ParameterEnvironment::for_item(cx.tcx, id);
 
-        let infcx = cx.tcx.borrowck_fake_infer_ctxt(param_env);
-        {
-            let mut vis = ExprUseVisitor::new(&mut v, &infcx);
-            vis.consume_body(body);
-        }
+        let region_scope_tree = &cx.tcx.region_scope_tree(fn_def_id);
+        ExprUseVisitor::new(&mut v, cx.tcx, cx.param_env, region_scope_tree, cx.tables, None).consume_body(body);
 
         for node in v.set {
-            span_lint(cx,
-                      BOXED_LOCAL,
-                      cx.tcx.map.span(node),
-                      "local variable doesn't need to be boxed here");
+            span_lint(
+                cx,
+                BOXED_LOCAL,
+                cx.tcx.hir.span(node),
+                "local variable doesn't need to be boxed here",
+            );
         }
     }
 }
 
-impl<'a, 'tcx: 'a> Delegate<'tcx> for EscapeDelegate<'a, 'tcx> {
-    fn consume(&mut self, _: NodeId, _: Span, cmt: cmt<'tcx>, mode: ConsumeMode) {
+impl<'a, 'tcx> Delegate<'tcx> for EscapeDelegate<'a, 'tcx> {
+    fn consume(&mut self, _: NodeId, _: Span, cmt: &cmt_<'tcx>, mode: ConsumeMode) {
         if let Categorization::Local(lid) = cmt.cat {
-            if self.set.contains(&lid) {
-                if let Move(DirectRefMove) = mode {
-                    // moved out or in. clearly can't be localized
-                    self.set.remove(&lid);
-                }
+            if let Move(DirectRefMove) = mode {
+                // moved out or in. clearly can't be localized
+                self.set.remove(&lid);
             }
         }
     }
-    fn matched_pat(&mut self, _: &Pat, _: cmt<'tcx>, _: MatchMode) {}
-    fn consume_pat(&mut self, consume_pat: &Pat, cmt: cmt<'tcx>, _: ConsumeMode) {
-        let map = &self.tcx.map;
+    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 map.is_argument(consume_pat.id) {
             // Skip closure arguments
             if let Some(NodeExpr(..)) = map.find(map.get_parent_node(consume_pat.id)) {
@@ -119,11 +109,12 @@ fn consume_pat(&mut self, consume_pat: &Pat, cmt: cmt<'tcx>, _: ConsumeMode) {
             return;
         }
         if let Categorization::Rvalue(..) = cmt.cat {
-            if let Some(NodeStmt(st)) = map.find(map.get_parent_node(cmt.id)) {
-                if let StmtDecl(ref decl, _) = st.node {
-                    if let DeclLocal(ref loc) = decl.node {
+            let id = map.hir_to_node_id(cmt.hir_id);
+            if let Some(NodeStmt(st)) = map.find(map.get_parent_node(id)) {
+                if let StmtKind::Decl(ref decl, _) = st.node {
+                    if let DeclKind::Local(ref loc) = decl.node {
                         if let Some(ref ex) = loc.init {
-                            if let ExprBox(..) = ex.node {
+                            if let ExprKind::Box(..) = ex.node {
                                 if is_non_trait_box(cmt.ty) && !self.is_large_box(cmt.ty) {
                                     // let x = box (...)
                                     self.set.insert(consume_pat.id);
@@ -145,80 +136,40 @@ fn consume_pat(&mut self, consume_pat: &Pat, cmt: cmt<'tcx>, _: ConsumeMode) {
                 self.set.remove(&lid);
             }
         }
-
     }
-    fn borrow(
-        &mut self,
-        borrow_id: NodeId,
-        _: Span,
-        cmt: cmt<'tcx>,
-        _: &ty::Region,
-        _: ty::BorrowKind,
-        loan_cause: LoanCause
-    ) {
-        use rustc::ty::adjustment::Adjust;
-
+    fn borrow(&mut self, _: NodeId, _: Span, cmt: &cmt_<'tcx>, _: ty::Region, _: ty::BorrowKind, loan_cause: LoanCause) {
         if let Categorization::Local(lid) = cmt.cat {
-            if self.set.contains(&lid) {
-                if let Some(&Adjust::DerefRef { autoderefs, .. }) =
-                    self.tcx
-                        .tables
-                        .borrow()
-                        .adjustments
-                        .get(&borrow_id)
-                        .map(|a| &a.kind) {
-                    if LoanCause::AutoRef == loan_cause {
-                        // x.foo()
-                        if autoderefs == 0 {
-                            self.set.remove(&lid); // Used without autodereffing (i.e. x.clone())
-                        }
-                    } else {
-                        span_bug!(cmt.span, "Unknown adjusted AutoRef");
-                    }
-                } else if LoanCause::AddrOf == loan_cause {
-                    // &x
-                    if let Some(&Adjust::DerefRef { autoderefs, .. }) =
-                        self.tcx
-                            .tables
-                            .borrow()
-                            .adjustments
-                            .get(&self.tcx
-                                .map
-                                .get_parent_node(borrow_id))
-                            .map(|a| &a.kind) {
-                        if autoderefs <= 1 {
-                            // foo(&x) where no extra autoreffing is happening
-                            self.set.remove(&lid);
-                        }
-                    }
+            match loan_cause {
+                // x.foo()
+                // Used without autodereffing (i.e. x.clone())
+                LoanCause::AutoRef |
+
+                // &x
+                // foo(&x) where no extra autoreffing is happening
+                LoanCause::AddrOf |
 
-                } else if LoanCause::MatchDiscriminant == loan_cause {
-                    self.set.remove(&lid); // `match x` can move
+                // `match x` can move
+                LoanCause::MatchDiscriminant => {
+                    self.set.remove(&lid);
                 }
+
                 // do nothing for matches, etc. These can't escape
+                _ => {}
             }
         }
     }
     fn decl_without_init(&mut self, _: NodeId, _: Span) {}
-    fn mutate(&mut self, _: NodeId, _: Span, _: cmt<'tcx>, _: MutateMode) {}
+    fn mutate(&mut self, _: NodeId, _: Span, _: &cmt_<'tcx>, _: MutateMode) {}
 }
 
-impl<'a, 'tcx: 'a> EscapeDelegate<'a, 'tcx> {
-    fn is_large_box(&self, ty: ty::Ty<'tcx>) -> bool {
+impl<'a, 'tcx> EscapeDelegate<'a, 'tcx> {
+    fn is_large_box(&self, ty: Ty<'tcx>) -> bool {
         // Large types need to be boxed to avoid stack
         // overflows.
-        match ty.sty {
-            ty::TyBox(inner) => {
-                self.tcx.infer_ctxt(None, None, Reveal::All).enter(|infcx| {
-                    if let Ok(layout) = inner.layout(&infcx) {
-                        let size = layout.size(&self.target);
-                        size.bytes() > self.too_large_for_stack
-                    } else {
-                        false
-                    }
-                })
-            },
-            _ => false,
+        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
         }
     }
 }