2013-12-08 01:55:27 -06:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
// This implements the dead-code warning pass. It follows middle::reachable
|
|
|
|
// closely. The idea is that all reachable symbols are live, codes called
|
|
|
|
// from live codes are live, and everything else is dead.
|
|
|
|
|
2014-05-14 14:31:30 -05:00
|
|
|
use middle::def;
|
2014-06-04 16:35:58 -05:00
|
|
|
use lint;
|
2014-01-11 02:21:53 -06:00
|
|
|
use middle::privacy;
|
2013-12-08 01:55:27 -06:00
|
|
|
use middle::ty;
|
|
|
|
use middle::typeck;
|
2014-02-28 16:34:26 -06:00
|
|
|
use util::nodemap::NodeSet;
|
2013-12-08 01:55:27 -06:00
|
|
|
|
2014-05-29 21:03:06 -05:00
|
|
|
use std::collections::HashSet;
|
2013-12-08 01:55:27 -06:00
|
|
|
use syntax::ast;
|
|
|
|
use syntax::ast_map;
|
2014-05-14 14:31:30 -05:00
|
|
|
use syntax::ast_util::{local_def, is_local};
|
2014-06-04 16:35:58 -05:00
|
|
|
use syntax::attr::AttrMetaMethods;
|
2014-01-11 02:21:53 -06:00
|
|
|
use syntax::attr;
|
2013-12-08 01:55:27 -06:00
|
|
|
use syntax::codemap;
|
|
|
|
use syntax::parse::token;
|
|
|
|
use syntax::visit::Visitor;
|
|
|
|
use syntax::visit;
|
|
|
|
|
|
|
|
// Any local node that may call something in its body block should be
|
2014-01-09 07:05:33 -06:00
|
|
|
// explored. For example, if it's a live NodeItem that is a
|
2013-12-08 01:55:27 -06:00
|
|
|
// function, then we should explore its block to check for codes that
|
|
|
|
// may need to be marked as live.
|
2014-03-05 21:07:47 -06:00
|
|
|
fn should_explore(tcx: &ty::ctxt, def_id: ast::DefId) -> bool {
|
2013-12-08 01:55:27 -06:00
|
|
|
if !is_local(def_id) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-12-27 18:09:29 -06:00
|
|
|
|
2014-02-13 23:07:09 -06:00
|
|
|
match tcx.map.find(def_id.node) {
|
2014-01-17 06:23:09 -06:00
|
|
|
Some(ast_map::NodeItem(..))
|
|
|
|
| Some(ast_map::NodeMethod(..))
|
|
|
|
| Some(ast_map::NodeForeignItem(..))
|
|
|
|
| Some(ast_map::NodeTraitMethod(..)) => true,
|
2013-12-08 01:55:27 -06:00
|
|
|
_ => false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-05 21:07:47 -06:00
|
|
|
struct MarkSymbolVisitor<'a> {
|
|
|
|
worklist: Vec<ast::NodeId>,
|
|
|
|
tcx: &'a ty::ctxt,
|
2014-05-05 20:56:44 -05:00
|
|
|
live_symbols: Box<HashSet<ast::NodeId>>,
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
|
|
|
|
2014-06-12 01:38:30 -05:00
|
|
|
#[deriving(Clone)]
|
|
|
|
struct MarkSymbolVisitorContext {
|
|
|
|
struct_has_extern_repr: bool
|
|
|
|
}
|
|
|
|
|
2014-03-05 21:07:47 -06:00
|
|
|
impl<'a> MarkSymbolVisitor<'a> {
|
|
|
|
fn new(tcx: &'a ty::ctxt,
|
|
|
|
worklist: Vec<ast::NodeId>) -> MarkSymbolVisitor<'a> {
|
2013-12-08 01:55:27 -06:00
|
|
|
MarkSymbolVisitor {
|
|
|
|
worklist: worklist,
|
|
|
|
tcx: tcx,
|
2014-04-25 03:08:02 -05:00
|
|
|
live_symbols: box HashSet::new(),
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-31 15:19:57 -06:00
|
|
|
fn check_def_id(&mut self, def_id: ast::DefId) {
|
|
|
|
if should_explore(self.tcx, def_id) {
|
|
|
|
self.worklist.push(def_id.node);
|
|
|
|
}
|
|
|
|
self.live_symbols.insert(def_id.node);
|
|
|
|
}
|
|
|
|
|
2013-12-11 19:49:46 -06:00
|
|
|
fn lookup_and_handle_definition(&mut self, id: &ast::NodeId) {
|
2014-03-20 21:49:20 -05:00
|
|
|
let def = match self.tcx.def_map.borrow().find(id) {
|
2013-12-08 01:55:27 -06:00
|
|
|
Some(&def) => def,
|
2013-12-11 19:49:46 -06:00
|
|
|
None => return
|
2013-12-08 01:55:27 -06:00
|
|
|
};
|
|
|
|
let def_id = match def {
|
2014-05-14 14:31:30 -05:00
|
|
|
def::DefVariant(enum_id, _, _) => Some(enum_id),
|
|
|
|
def::DefPrimTy(_) => None,
|
|
|
|
_ => Some(def.def_id())
|
2013-12-08 01:55:27 -06:00
|
|
|
};
|
|
|
|
match def_id {
|
2013-12-31 15:19:57 -06:00
|
|
|
Some(def_id) => self.check_def_id(def_id),
|
|
|
|
None => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-06 11:24:11 -06:00
|
|
|
fn lookup_and_handle_method(&mut self, id: ast::NodeId,
|
2013-12-31 15:19:57 -06:00
|
|
|
span: codemap::Span) {
|
2014-03-06 11:24:11 -06:00
|
|
|
let method_call = typeck::MethodCall::expr(id);
|
2014-04-09 10:18:40 -05:00
|
|
|
match self.tcx.method_map.borrow().find(&method_call) {
|
2014-02-26 08:06:45 -06:00
|
|
|
Some(method) => {
|
|
|
|
match method.origin {
|
2014-02-26 08:01:36 -06:00
|
|
|
typeck::MethodStatic(def_id) => {
|
2013-12-31 15:19:57 -06:00
|
|
|
match ty::provided_source(self.tcx, def_id) {
|
|
|
|
Some(p_did) => self.check_def_id(p_did),
|
|
|
|
None => self.check_def_id(def_id)
|
|
|
|
}
|
|
|
|
}
|
2014-02-26 08:01:36 -06:00
|
|
|
typeck::MethodParam(typeck::MethodParam {
|
2013-12-31 15:19:57 -06:00
|
|
|
trait_id: trait_id,
|
|
|
|
method_num: index,
|
|
|
|
..
|
|
|
|
})
|
2014-02-26 08:01:36 -06:00
|
|
|
| typeck::MethodObject(typeck::MethodObject {
|
2013-12-31 15:19:57 -06:00
|
|
|
trait_id: trait_id,
|
|
|
|
method_num: index,
|
|
|
|
..
|
|
|
|
}) => {
|
|
|
|
let def_id = ty::trait_method(self.tcx,
|
|
|
|
trait_id, index).def_id;
|
|
|
|
self.check_def_id(def_id);
|
|
|
|
}
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
|
|
|
}
|
2013-12-31 15:19:57 -06:00
|
|
|
None => {
|
|
|
|
self.tcx.sess.span_bug(span,
|
|
|
|
"method call expression not \
|
|
|
|
in method map?!")
|
|
|
|
}
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-05 17:00:29 -05:00
|
|
|
fn handle_field_access(&mut self, lhs: &ast::Expr, name: &ast::Ident) {
|
|
|
|
match ty::get(ty::expr_ty_adjusted(self.tcx, lhs)).sty {
|
|
|
|
ty::ty_struct(id, _) => {
|
|
|
|
let fields = ty::lookup_struct_fields(self.tcx, id);
|
|
|
|
let field_id = fields.iter()
|
|
|
|
.find(|field| field.name == name.name).unwrap().id;
|
|
|
|
self.live_symbols.insert(field_id.node);
|
|
|
|
},
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn handle_field_pattern_match(&mut self, lhs: &ast::Pat, pats: &[ast::FieldPat]) {
|
|
|
|
match self.tcx.def_map.borrow().get(&lhs.id) {
|
|
|
|
&def::DefStruct(id) | &def::DefVariant(_, id, _) => {
|
|
|
|
let fields = ty::lookup_struct_fields(self.tcx, id);
|
|
|
|
for pat in pats.iter() {
|
|
|
|
let field_id = fields.iter()
|
|
|
|
.find(|field| field.name == pat.ident.name).unwrap().id;
|
|
|
|
self.live_symbols.insert(field_id.node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-08 01:55:27 -06:00
|
|
|
fn mark_live_symbols(&mut self) {
|
|
|
|
let mut scanned = HashSet::new();
|
|
|
|
while self.worklist.len() > 0 {
|
2013-12-23 09:20:52 -06:00
|
|
|
let id = self.worklist.pop().unwrap();
|
2013-12-08 01:55:27 -06:00
|
|
|
if scanned.contains(&id) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
scanned.insert(id);
|
2013-12-27 18:09:29 -06:00
|
|
|
|
2014-02-13 23:07:09 -06:00
|
|
|
match self.tcx.map.find(id) {
|
2014-01-17 06:23:09 -06:00
|
|
|
Some(ref node) => {
|
2013-12-08 01:55:27 -06:00
|
|
|
self.live_symbols.insert(id);
|
|
|
|
self.visit_node(node);
|
|
|
|
}
|
|
|
|
None => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-09 07:05:33 -06:00
|
|
|
fn visit_node(&mut self, node: &ast_map::Node) {
|
2014-06-12 01:38:30 -05:00
|
|
|
let ctxt = MarkSymbolVisitorContext {
|
|
|
|
struct_has_extern_repr: false
|
|
|
|
};
|
2013-12-08 01:55:27 -06:00
|
|
|
match *node {
|
2014-02-13 23:07:09 -06:00
|
|
|
ast_map::NodeItem(item) => {
|
2013-12-08 01:55:27 -06:00
|
|
|
match item.node {
|
2014-06-12 01:38:30 -05:00
|
|
|
ast::ItemStruct(..) => {
|
2014-06-05 17:00:29 -05:00
|
|
|
let has_extern_repr = item.attrs.iter().fold(attr::ReprAny, |acc, attr| {
|
|
|
|
attr::find_repr_attr(self.tcx.sess.diagnostic(), attr, acc)
|
|
|
|
}) == attr::ReprExtern;
|
2014-06-12 01:38:30 -05:00
|
|
|
|
|
|
|
visit::walk_item(self, &*item, MarkSymbolVisitorContext {
|
|
|
|
struct_has_extern_repr: has_extern_repr,
|
|
|
|
..(ctxt)
|
2014-06-05 17:00:29 -05:00
|
|
|
});
|
|
|
|
}
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemFn(..)
|
|
|
|
| ast::ItemEnum(..)
|
2014-06-12 01:38:30 -05:00
|
|
|
| ast::ItemTy(..)
|
2014-01-09 07:05:33 -06:00
|
|
|
| ast::ItemStatic(..) => {
|
2014-06-12 01:38:30 -05:00
|
|
|
visit::walk_item(self, &*item, ctxt);
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
}
|
2014-02-13 23:07:09 -06:00
|
|
|
ast_map::NodeTraitMethod(trait_method) => {
|
2014-06-12 01:38:30 -05:00
|
|
|
visit::walk_trait_method(self, &*trait_method, ctxt);
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
2014-02-13 23:07:09 -06:00
|
|
|
ast_map::NodeMethod(method) => {
|
2014-06-12 01:38:30 -05:00
|
|
|
visit::walk_block(self, &*method.body, ctxt);
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
2014-02-13 23:07:09 -06:00
|
|
|
ast_map::NodeForeignItem(foreign_item) => {
|
2014-06-12 01:38:30 -05:00
|
|
|
visit::walk_foreign_item(self, &*foreign_item, ctxt);
|
2013-12-13 23:08:26 -06:00
|
|
|
}
|
2013-12-08 01:55:27 -06:00
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-12 01:38:30 -05:00
|
|
|
impl<'a> Visitor<MarkSymbolVisitorContext> for MarkSymbolVisitor<'a> {
|
|
|
|
|
|
|
|
fn visit_struct_def(&mut self, def: &ast::StructDef, _: ast::Ident, _: &ast::Generics,
|
|
|
|
_: ast::NodeId, ctxt: MarkSymbolVisitorContext) {
|
|
|
|
let live_fields = def.fields.iter().filter(|f| {
|
|
|
|
ctxt.struct_has_extern_repr || match f.node.kind {
|
|
|
|
ast::NamedField(_, ast::Public) => true,
|
|
|
|
_ => false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
self.live_symbols.extend(live_fields.map(|f| f.node.id));
|
|
|
|
|
|
|
|
visit::walk_struct_def(self, def, ctxt);
|
|
|
|
}
|
2013-12-08 01:55:27 -06:00
|
|
|
|
2014-06-12 01:38:30 -05:00
|
|
|
fn visit_expr(&mut self, expr: &ast::Expr, ctxt: MarkSymbolVisitorContext) {
|
2013-12-08 01:55:27 -06:00
|
|
|
match expr.node {
|
|
|
|
ast::ExprMethodCall(..) => {
|
2014-03-06 11:24:11 -06:00
|
|
|
self.lookup_and_handle_method(expr.id, expr.span);
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
2014-06-05 17:00:29 -05:00
|
|
|
ast::ExprField(ref lhs, ref ident, _) => {
|
2014-06-13 16:56:42 -05:00
|
|
|
self.handle_field_access(&**lhs, &ident.node);
|
2014-06-05 17:00:29 -05:00
|
|
|
}
|
2013-12-08 01:55:27 -06:00
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
|
2014-06-12 01:38:30 -05:00
|
|
|
visit::walk_expr(self, expr, ctxt);
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
|
|
|
|
2014-06-12 01:38:30 -05:00
|
|
|
fn visit_pat(&mut self, pat: &ast::Pat, ctxt: MarkSymbolVisitorContext) {
|
2014-06-05 17:00:29 -05:00
|
|
|
match pat.node {
|
|
|
|
ast::PatStruct(_, ref fields, _) => {
|
|
|
|
self.handle_field_pattern_match(pat, fields.as_slice());
|
|
|
|
}
|
2014-06-30 20:02:14 -05:00
|
|
|
ast::PatIdent(_, _, _) => {
|
|
|
|
// it might be the only use of a static:
|
|
|
|
self.lookup_and_handle_definition(&pat.id)
|
|
|
|
}
|
2014-06-05 17:00:29 -05:00
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
|
2014-06-12 01:38:30 -05:00
|
|
|
visit::walk_pat(self, pat, ctxt);
|
2014-06-05 17:00:29 -05:00
|
|
|
}
|
|
|
|
|
2014-06-12 01:38:30 -05:00
|
|
|
fn visit_path(&mut self, path: &ast::Path, id: ast::NodeId, ctxt: MarkSymbolVisitorContext) {
|
2013-12-11 19:49:46 -06:00
|
|
|
self.lookup_and_handle_definition(&id);
|
2014-06-12 01:38:30 -05:00
|
|
|
visit::walk_path(self, path, ctxt);
|
2013-12-11 19:49:46 -06:00
|
|
|
}
|
|
|
|
|
2014-06-12 01:38:30 -05:00
|
|
|
fn visit_item(&mut self, _: &ast::Item, _: MarkSymbolVisitorContext) {
|
2013-12-08 01:55:27 -06:00
|
|
|
// Do not recurse into items. These items will be added to the
|
|
|
|
// worklist and recursed into manually if necessary.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-11 02:21:53 -06:00
|
|
|
fn has_allow_dead_code_or_lang_attr(attrs: &[ast::Attribute]) -> bool {
|
2014-06-04 16:35:58 -05:00
|
|
|
if attr::contains_name(attrs.as_slice(), "lang") {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-06-13 17:03:26 -05:00
|
|
|
let dead_code = lint::builtin::DEAD_CODE.name_lower();
|
|
|
|
for attr in lint::gather_attrs(attrs).move_iter() {
|
|
|
|
match attr {
|
|
|
|
Ok((ref name, lint::Allow, _))
|
|
|
|
if name.get() == dead_code.as_slice() => return true,
|
2014-06-04 16:35:58 -05:00
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
false
|
2014-01-11 02:21:53 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// This visitor seeds items that
|
|
|
|
// 1) We want to explicitly consider as live:
|
|
|
|
// * Item annotated with #[allow(dead_code)]
|
|
|
|
// - This is done so that if we want to suppress warnings for a
|
|
|
|
// group of dead functions, we only have to annotate the "root".
|
|
|
|
// For example, if both `f` and `g` are dead and `f` calls `g`,
|
|
|
|
// then annotating `f` with `#[allow(dead_code)]` will suppress
|
|
|
|
// warning for both `f` and `g`.
|
|
|
|
// * Item annotated with #[lang=".."]
|
|
|
|
// - This is because lang items are always callable from elsewhere.
|
|
|
|
// or
|
|
|
|
// 2) We are not sure to be live or not
|
|
|
|
// * Implementation of a trait method
|
|
|
|
struct LifeSeeder {
|
2014-03-04 12:02:49 -06:00
|
|
|
worklist: Vec<ast::NodeId> ,
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
|
|
|
|
2014-01-11 02:21:53 -06:00
|
|
|
impl Visitor<()> for LifeSeeder {
|
2014-01-09 07:05:33 -06:00
|
|
|
fn visit_item(&mut self, item: &ast::Item, _: ()) {
|
2014-02-28 17:25:15 -06:00
|
|
|
if has_allow_dead_code_or_lang_attr(item.attrs.as_slice()) {
|
2014-01-11 02:21:53 -06:00
|
|
|
self.worklist.push(item.id);
|
|
|
|
}
|
2013-12-08 01:55:27 -06:00
|
|
|
match item.node {
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemImpl(_, Some(ref _trait_ref), _, ref methods) => {
|
2013-12-08 01:55:27 -06:00
|
|
|
for method in methods.iter() {
|
|
|
|
self.worklist.push(method.id);
|
|
|
|
}
|
|
|
|
}
|
2014-01-11 02:21:53 -06:00
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
visit::walk_item(self, item, ());
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_fn(&mut self, fk: &visit::FnKind,
|
|
|
|
_: &ast::FnDecl, block: &ast::Block,
|
|
|
|
_: codemap::Span, id: ast::NodeId, _: ()) {
|
|
|
|
// Check for method here because methods are not ast::Item
|
|
|
|
match *fk {
|
|
|
|
visit::FkMethod(_, _, method) => {
|
2014-02-28 17:25:15 -06:00
|
|
|
if has_allow_dead_code_or_lang_attr(method.attrs.as_slice()) {
|
2014-01-11 02:21:53 -06:00
|
|
|
self.worklist.push(id);
|
|
|
|
}
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
}
|
2014-01-11 02:21:53 -06:00
|
|
|
visit::walk_block(self, block, ());
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-05 21:07:47 -06:00
|
|
|
fn create_and_seed_worklist(tcx: &ty::ctxt,
|
2013-12-08 01:55:27 -06:00
|
|
|
exported_items: &privacy::ExportedItems,
|
2014-02-28 16:34:26 -06:00
|
|
|
reachable_symbols: &NodeSet,
|
2014-03-04 12:02:49 -06:00
|
|
|
krate: &ast::Crate) -> Vec<ast::NodeId> {
|
|
|
|
let mut worklist = Vec::new();
|
2013-12-08 01:55:27 -06:00
|
|
|
|
|
|
|
// Preferably, we would only need to seed the worklist with reachable
|
|
|
|
// symbols. However, since the set of reachable symbols differs
|
|
|
|
// depending on whether a crate is built as bin or lib, and we want
|
|
|
|
// the warning to be consistent, we also seed the worklist with
|
|
|
|
// exported symbols.
|
|
|
|
for &id in exported_items.iter() {
|
|
|
|
worklist.push(id);
|
|
|
|
}
|
|
|
|
for &id in reachable_symbols.iter() {
|
|
|
|
worklist.push(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Seed entry point
|
2014-03-28 12:29:55 -05:00
|
|
|
match *tcx.sess.entry_fn.borrow() {
|
2013-12-08 01:55:27 -06:00
|
|
|
Some((id, _)) => worklist.push(id),
|
|
|
|
None => ()
|
|
|
|
}
|
|
|
|
|
2014-04-20 23:49:39 -05:00
|
|
|
// Seed implemented trait methods
|
2014-01-11 02:21:53 -06:00
|
|
|
let mut life_seeder = LifeSeeder {
|
2013-12-08 01:55:27 -06:00
|
|
|
worklist: worklist
|
|
|
|
};
|
2014-02-05 15:15:24 -06:00
|
|
|
visit::walk_crate(&mut life_seeder, krate, ());
|
2013-12-08 01:55:27 -06:00
|
|
|
|
2014-01-11 02:21:53 -06:00
|
|
|
return life_seeder.worklist;
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
|
|
|
|
2014-03-05 21:07:47 -06:00
|
|
|
fn find_live(tcx: &ty::ctxt,
|
2013-12-08 01:55:27 -06:00
|
|
|
exported_items: &privacy::ExportedItems,
|
2014-02-28 16:34:26 -06:00
|
|
|
reachable_symbols: &NodeSet,
|
2014-02-05 15:15:24 -06:00
|
|
|
krate: &ast::Crate)
|
2014-05-05 20:56:44 -05:00
|
|
|
-> Box<HashSet<ast::NodeId>> {
|
2013-12-08 01:55:27 -06:00
|
|
|
let worklist = create_and_seed_worklist(tcx, exported_items,
|
2014-02-05 15:15:24 -06:00
|
|
|
reachable_symbols, krate);
|
2014-04-09 10:18:40 -05:00
|
|
|
let mut symbol_visitor = MarkSymbolVisitor::new(tcx, worklist);
|
2013-12-08 01:55:27 -06:00
|
|
|
symbol_visitor.mark_live_symbols();
|
|
|
|
symbol_visitor.live_symbols
|
|
|
|
}
|
|
|
|
|
2014-01-09 07:05:33 -06:00
|
|
|
fn should_warn(item: &ast::Item) -> bool {
|
2013-12-08 01:55:27 -06:00
|
|
|
match item.node {
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemStatic(..)
|
|
|
|
| ast::ItemFn(..)
|
|
|
|
| ast::ItemEnum(..)
|
|
|
|
| ast::ItemStruct(..) => true,
|
2013-12-08 01:55:27 -06:00
|
|
|
_ => false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-09 07:05:33 -06:00
|
|
|
fn get_struct_ctor_id(item: &ast::Item) -> Option<ast::NodeId> {
|
2013-12-08 01:55:27 -06:00
|
|
|
match item.node {
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemStruct(struct_def, _) => struct_def.ctor_id,
|
2013-12-08 01:55:27 -06:00
|
|
|
_ => None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-05 21:07:47 -06:00
|
|
|
struct DeadVisitor<'a> {
|
|
|
|
tcx: &'a ty::ctxt,
|
2014-05-05 20:56:44 -05:00
|
|
|
live_symbols: Box<HashSet<ast::NodeId>>,
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
|
|
|
|
2014-03-05 21:07:47 -06:00
|
|
|
impl<'a> DeadVisitor<'a> {
|
2014-06-05 17:00:29 -05:00
|
|
|
fn should_warn_about_field(&mut self, node: &ast::StructField_) -> bool {
|
|
|
|
let (is_named, has_leading_underscore) = match node.ident() {
|
2014-06-19 20:22:33 -05:00
|
|
|
Some(ref ident) => (true, token::get_ident(*ident).get().as_bytes()[0] == ('_' as u8)),
|
2014-06-05 17:00:29 -05:00
|
|
|
_ => (false, false)
|
|
|
|
};
|
|
|
|
let field_type = ty::node_id_to_type(self.tcx, node.id);
|
|
|
|
let is_marker_field = match ty::ty_to_def_id(field_type) {
|
|
|
|
Some(def_id) => self.tcx.lang_items.items().any(|(_, item)| *item == Some(def_id)),
|
|
|
|
_ => false
|
|
|
|
};
|
|
|
|
is_named
|
|
|
|
&& !self.symbol_is_live(node.id, None)
|
|
|
|
&& !has_leading_underscore
|
|
|
|
&& !is_marker_field
|
|
|
|
&& !has_allow_dead_code_or_lang_attr(node.attrs.as_slice())
|
|
|
|
}
|
|
|
|
|
2013-12-08 01:55:27 -06:00
|
|
|
// id := node id of an item's definition.
|
|
|
|
// ctor_id := `Some` if the item is a struct_ctor (tuple struct),
|
|
|
|
// `None` otherwise.
|
|
|
|
// If the item is a struct_ctor, then either its `id` or
|
|
|
|
// `ctor_id` (unwrapped) is in the live_symbols set. More specifically,
|
|
|
|
// DefMap maps the ExprPath of a struct_ctor to the node referred by
|
|
|
|
// `ctor_id`. On the other hand, in a statement like
|
|
|
|
// `type <ident> <generics> = <ty>;` where <ty> refers to a struct_ctor,
|
|
|
|
// DefMap maps <ty> to `id` instead.
|
|
|
|
fn symbol_is_live(&mut self, id: ast::NodeId,
|
|
|
|
ctor_id: Option<ast::NodeId>) -> bool {
|
|
|
|
if self.live_symbols.contains(&id)
|
2013-12-06 12:51:10 -06:00
|
|
|
|| ctor_id.map_or(false,
|
|
|
|
|ctor| self.live_symbols.contains(&ctor)) {
|
2013-12-08 01:55:27 -06:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// If it's a type whose methods are live, then it's live, too.
|
|
|
|
// This is done to handle the case where, for example, the static
|
|
|
|
// method of a private type is used, but the type itself is never
|
|
|
|
// called directly.
|
2014-04-21 04:04:35 -05:00
|
|
|
let impl_methods = self.tcx.impl_methods.borrow();
|
|
|
|
match self.tcx.inherent_impls.borrow().find(&local_def(id)) {
|
2013-12-08 01:55:27 -06:00
|
|
|
None => (),
|
2014-04-22 11:06:43 -05:00
|
|
|
Some(impl_list) => {
|
2014-04-21 04:04:35 -05:00
|
|
|
for impl_did in impl_list.borrow().iter() {
|
|
|
|
for method_did in impl_methods.get(impl_did).iter() {
|
|
|
|
if self.live_symbols.contains(&method_did.node) {
|
2013-12-08 01:55:27 -06:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
false
|
|
|
|
}
|
2013-12-13 23:08:26 -06:00
|
|
|
|
2014-05-09 20:45:36 -05:00
|
|
|
fn warn_dead_code(&mut self,
|
|
|
|
id: ast::NodeId,
|
|
|
|
span: codemap::Span,
|
|
|
|
ident: ast::Ident) {
|
|
|
|
self.tcx
|
|
|
|
.sess
|
2014-06-13 15:13:05 -05:00
|
|
|
.add_lint(lint::builtin::DEAD_CODE,
|
2014-05-09 20:45:36 -05:00
|
|
|
id,
|
|
|
|
span,
|
2014-05-27 22:44:58 -05:00
|
|
|
format!("code is never used: `{}`",
|
|
|
|
token::get_ident(ident)));
|
2013-12-13 23:08:26 -06:00
|
|
|
}
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
|
|
|
|
2014-03-05 21:07:47 -06:00
|
|
|
impl<'a> Visitor<()> for DeadVisitor<'a> {
|
2014-01-09 07:05:33 -06:00
|
|
|
fn visit_item(&mut self, item: &ast::Item, _: ()) {
|
2013-12-08 01:55:27 -06:00
|
|
|
let ctor_id = get_struct_ctor_id(item);
|
|
|
|
if !self.symbol_is_live(item.id, ctor_id) && should_warn(item) {
|
2014-02-13 23:07:09 -06:00
|
|
|
self.warn_dead_code(item.id, item.span, item.ident);
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
|
|
|
visit::walk_item(self, item, ());
|
|
|
|
}
|
|
|
|
|
2014-01-09 07:05:33 -06:00
|
|
|
fn visit_foreign_item(&mut self, fi: &ast::ForeignItem, _: ()) {
|
2013-12-13 23:08:26 -06:00
|
|
|
if !self.symbol_is_live(fi.id, None) {
|
2014-02-13 23:07:09 -06:00
|
|
|
self.warn_dead_code(fi.id, fi.span, fi.ident);
|
2013-12-13 23:08:26 -06:00
|
|
|
}
|
|
|
|
visit::walk_foreign_item(self, fi, ());
|
|
|
|
}
|
|
|
|
|
2014-01-09 07:05:33 -06:00
|
|
|
fn visit_fn(&mut self, fk: &visit::FnKind,
|
|
|
|
_: &ast::FnDecl, block: &ast::Block,
|
2013-12-08 01:55:27 -06:00
|
|
|
span: codemap::Span, id: ast::NodeId, _: ()) {
|
2014-01-09 07:05:33 -06:00
|
|
|
// Have to warn method here because methods are not ast::Item
|
2013-12-08 01:55:27 -06:00
|
|
|
match *fk {
|
2014-01-09 07:05:33 -06:00
|
|
|
visit::FkMethod(..) => {
|
2013-12-08 01:55:27 -06:00
|
|
|
let ident = visit::name_of_fn(fk);
|
|
|
|
if !self.symbol_is_live(id, None) {
|
2014-02-13 23:07:09 -06:00
|
|
|
self.warn_dead_code(id, span, ident);
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
visit::walk_block(self, block, ());
|
|
|
|
}
|
|
|
|
|
2014-06-05 17:00:29 -05:00
|
|
|
fn visit_struct_field(&mut self, field: &ast::StructField, _: ()) {
|
|
|
|
if self.should_warn_about_field(&field.node) {
|
|
|
|
self.warn_dead_code(field.node.id, field.span, field.node.ident().unwrap());
|
|
|
|
}
|
|
|
|
|
|
|
|
visit::walk_struct_field(self, field, ());
|
|
|
|
}
|
|
|
|
|
2013-12-08 01:55:27 -06:00
|
|
|
// Overwrite so that we don't warn the trait method itself.
|
2014-01-09 07:05:33 -06:00
|
|
|
fn visit_trait_method(&mut self, trait_method: &ast::TraitMethod, _: ()) {
|
2013-12-08 01:55:27 -06:00
|
|
|
match *trait_method {
|
2014-05-16 12:15:33 -05:00
|
|
|
ast::Provided(ref method) => visit::walk_block(self, &*method.body, ()),
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::Required(_) => ()
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-05 21:07:47 -06:00
|
|
|
pub fn check_crate(tcx: &ty::ctxt,
|
2013-12-08 01:55:27 -06:00
|
|
|
exported_items: &privacy::ExportedItems,
|
2014-02-28 16:34:26 -06:00
|
|
|
reachable_symbols: &NodeSet,
|
2014-02-05 15:15:24 -06:00
|
|
|
krate: &ast::Crate) {
|
2014-04-09 10:18:40 -05:00
|
|
|
let live_symbols = find_live(tcx, exported_items,
|
2014-02-05 15:15:24 -06:00
|
|
|
reachable_symbols, krate);
|
2013-12-08 01:55:27 -06:00
|
|
|
let mut visitor = DeadVisitor { tcx: tcx, live_symbols: live_symbols };
|
2014-02-05 15:15:24 -06:00
|
|
|
visit::walk_crate(&mut visitor, krate, ());
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|