rust/src/librustc/middle/dead.rs

599 lines
22 KiB
Rust
Raw Normal View History

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.
use dep_graph::DepNode;
2016-03-29 00:50:44 -05:00
use hir::map as ast_map;
use hir::{self, pat_util, PatKind};
2016-03-29 00:50:44 -05:00
use hir::intravisit::{self, Visitor};
2015-07-31 02:04:06 -05:00
use middle::privacy;
2016-08-16 22:32:00 -05:00
use ty::{self, TyCtxt};
use hir::def::Def;
use hir::def_id::{DefId};
2014-09-20 06:26:10 -05:00
use lint;
2013-12-08 01:55:27 -06:00
use std::collections::HashSet;
2015-06-09 18:40:45 -05:00
use syntax::{ast, codemap};
2016-04-12 08:58:55 -05:00
use syntax::attr;
use syntax_pos;
2013-12-08 01:55:27 -06:00
// Any local node that may call something in its body block should be
// 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.
fn should_explore<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
node_id: ast::NodeId) -> bool {
match tcx.map.find(node_id) {
Some(ast_map::NodeItem(..)) |
Some(ast_map::NodeImplItem(..)) |
Some(ast_map::NodeForeignItem(..)) |
Some(ast_map::NodeTraitItem(..)) =>
true,
_ =>
false
2013-12-08 01:55:27 -06:00
}
}
struct MarkSymbolVisitor<'a, 'tcx: 'a> {
2014-03-05 21:07:47 -06:00
worklist: Vec<ast::NodeId>,
tcx: TyCtxt<'a, 'tcx, 'tcx>,
live_symbols: Box<HashSet<ast::NodeId>>,
2014-09-20 06:26:10 -05:00
struct_has_extern_repr: bool,
ignore_non_const_paths: bool,
inherited_pub_visibility: bool,
ignore_variant_stack: Vec<DefId>,
}
impl<'a, 'tcx> MarkSymbolVisitor<'a, 'tcx> {
fn new(tcx: TyCtxt<'a, 'tcx, 'tcx>,
worklist: Vec<ast::NodeId>) -> MarkSymbolVisitor<'a, 'tcx> {
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(),
2014-09-20 06:26:10 -05:00
struct_has_extern_repr: false,
ignore_non_const_paths: false,
inherited_pub_visibility: false,
ignore_variant_stack: vec![],
2013-12-08 01:55:27 -06:00
}
}
2015-08-16 05:32:28 -05:00
fn check_def_id(&mut self, def_id: DefId) {
if let Some(node_id) = self.tcx.map.as_local_node_id(def_id) {
if should_explore(self.tcx, node_id) {
self.worklist.push(node_id);
}
self.live_symbols.insert(node_id);
}
}
fn insert_def_id(&mut self, def_id: DefId) {
if let Some(node_id) = self.tcx.map.as_local_node_id(def_id) {
debug_assert!(!should_explore(self.tcx, node_id));
self.live_symbols.insert(node_id);
}
}
fn lookup_and_handle_definition(&mut self, id: ast::NodeId) {
use ty::TypeVariants::{TyEnum, TyStruct};
let def = self.tcx.expect_def(id);
// If `bar` is a trait item, make sure to mark Foo as alive in `Foo::bar`
match def {
Def::AssociatedTy(..) | Def::Method(_) | Def::AssociatedConst(_)
if self.tcx.trait_of_item(def.def_id()).is_some() => {
if let Some(substs) = self.tcx.tables.borrow().item_substs.get(&id) {
2016-08-16 22:32:00 -05:00
match substs.substs.types[0].sty {
TyEnum(tyid, _) | TyStruct(tyid, _) => {
self.check_def_id(tyid.did)
}
_ => {}
}
}
}
_ => {}
}
match def {
Def::Const(_) | Def::AssociatedConst(..) => {
self.check_def_id(def.def_id());
}
_ if self.ignore_non_const_paths => (),
Def::PrimTy(_) => (),
Def::SelfTy(..) => (),
Def::Variant(enum_id, variant_id) => {
self.check_def_id(enum_id);
if !self.ignore_variant_stack.contains(&variant_id) {
self.check_def_id(variant_id);
2014-09-20 06:26:10 -05:00
}
}
_ => {
self.check_def_id(def.def_id());
}
}
}
fn lookup_and_handle_method(&mut self, id: ast::NodeId) {
let method_call = ty::MethodCall::expr(id);
let method = self.tcx.tables.borrow().method_map[&method_call];
self.check_def_id(method.def_id);
2013-12-08 01:55:27 -06:00
}
2015-07-31 02:04:06 -05:00
fn handle_field_access(&mut self, lhs: &hir::Expr, name: ast::Name) {
if let ty::TyStruct(def, _) = self.tcx.expr_ty_adjusted(lhs).sty {
self.insert_def_id(def.struct_variant().field_named(name).did);
} else {
span_bug!(lhs.span, "named field access on non-struct")
2014-06-05 17:00:29 -05:00
}
}
2015-07-31 02:04:06 -05:00
fn handle_tup_field_access(&mut self, lhs: &hir::Expr, idx: usize) {
if let ty::TyStruct(def, _) = self.tcx.expr_ty_adjusted(lhs).sty {
self.insert_def_id(def.struct_variant().fields[idx].did);
}
}
2015-07-31 02:04:06 -05:00
fn handle_field_pattern_match(&mut self, lhs: &hir::Pat,
pats: &[codemap::Spanned<hir::FieldPat>]) {
let variant = match self.tcx.node_id_to_type(lhs.id).sty {
ty::TyStruct(adt, _) | ty::TyEnum(adt, _) => {
adt.variant_of_def(self.tcx.expect_def(lhs.id))
}
_ => span_bug!(lhs.span, "non-ADT in struct pattern")
};
2015-01-31 11:20:46 -06:00
for pat in pats {
2016-02-14 06:25:12 -06:00
if let PatKind::Wild = pat.node.pat.node {
continue;
}
self.insert_def_id(variant.field_named(pat.node.name).did);
2014-06-05 17:00:29 -05:00
}
}
2013-12-08 01:55:27 -06:00
fn mark_live_symbols(&mut self) {
let mut scanned = HashSet::new();
while !self.worklist.is_empty() {
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
if let Some(ref node) = self.tcx.map.find(id) {
self.live_symbols.insert(id);
self.visit_node(node);
2013-12-08 01:55:27 -06:00
}
}
}
fn visit_node(&mut self, node: &ast_map::Node) {
let had_extern_repr = self.struct_has_extern_repr;
self.struct_has_extern_repr = false;
let had_inherited_pub_visibility = self.inherited_pub_visibility;
self.inherited_pub_visibility = false;
2013-12-08 01:55:27 -06:00
match *node {
ast_map::NodeItem(item) => {
2013-12-08 01:55:27 -06:00
match item.node {
2015-07-31 02:04:06 -05:00
hir::ItemStruct(..) => {
self.struct_has_extern_repr = item.attrs.iter().any(|attr| {
attr::find_repr_attrs(self.tcx.sess.diagnostic(), attr)
.contains(&attr::ReprExtern)
});
2016-02-09 15:00:20 -06:00
intravisit::walk_item(self, &item);
2014-06-05 17:00:29 -05:00
}
2015-07-31 02:04:06 -05:00
hir::ItemEnum(..) => {
self.inherited_pub_visibility = item.vis == hir::Public;
2016-02-09 15:00:20 -06:00
intravisit::walk_item(self, &item);
}
2015-07-31 02:04:06 -05:00
hir::ItemFn(..)
| hir::ItemTy(..)
| hir::ItemStatic(..)
| hir::ItemConst(..) => {
2016-02-09 15:00:20 -06:00
intravisit::walk_item(self, &item);
2013-12-08 01:55:27 -06:00
}
_ => ()
}
}
ast_map::NodeTraitItem(trait_item) => {
intravisit::walk_trait_item(self, trait_item);
2013-12-08 01:55:27 -06:00
}
ast_map::NodeImplItem(impl_item) => {
intravisit::walk_impl_item(self, impl_item);
2013-12-08 01:55:27 -06:00
}
ast_map::NodeForeignItem(foreign_item) => {
2016-02-09 15:00:20 -06:00
intravisit::walk_foreign_item(self, &foreign_item);
}
2013-12-08 01:55:27 -06:00
_ => ()
}
self.struct_has_extern_repr = had_extern_repr;
self.inherited_pub_visibility = had_inherited_pub_visibility;
2013-12-08 01:55:27 -06:00
}
}
impl<'a, 'tcx, 'v> Visitor<'v> for MarkSymbolVisitor<'a, 'tcx> {
fn visit_variant_data(&mut self, def: &hir::VariantData, _: ast::Name,
_: &hir::Generics, _: ast::NodeId, _: syntax_pos::Span) {
let has_extern_repr = self.struct_has_extern_repr;
let inherited_pub_visibility = self.inherited_pub_visibility;
let live_fields = def.fields().iter().filter(|f| {
has_extern_repr || inherited_pub_visibility || f.vis == hir::Public
});
self.live_symbols.extend(live_fields.map(|f| f.id));
intravisit::walk_struct_def(self, def);
}
2013-12-08 01:55:27 -06:00
2015-07-31 02:04:06 -05:00
fn visit_expr(&mut self, expr: &hir::Expr) {
2013-12-08 01:55:27 -06:00
match expr.node {
2015-07-31 02:04:06 -05:00
hir::ExprMethodCall(..) => {
self.lookup_and_handle_method(expr.id);
2013-12-08 01:55:27 -06:00
}
hir::ExprField(ref lhs, ref name) => {
2016-02-09 15:00:20 -06:00
self.handle_field_access(&lhs, name.node);
2014-06-05 17:00:29 -05:00
}
2015-07-31 02:04:06 -05:00
hir::ExprTupField(ref lhs, idx) => {
2016-02-09 15:00:20 -06:00
self.handle_tup_field_access(&lhs, idx.node);
}
2013-12-08 01:55:27 -06:00
_ => ()
}
intravisit::walk_expr(self, expr);
2013-12-08 01:55:27 -06:00
}
2015-07-31 02:04:06 -05:00
fn visit_arm(&mut self, arm: &hir::Arm) {
if arm.pats.len() == 1 {
let pat = &*arm.pats[0];
let variants = pat_util::necessary_variants(&self.tcx.def_map.borrow(), pat);
// Inside the body, ignore constructions of variants
// necessary for the pattern to match. Those construction sites
// can't be reached unless the variant is constructed elsewhere.
let len = self.ignore_variant_stack.len();
2016-02-09 15:00:20 -06:00
self.ignore_variant_stack.extend_from_slice(&variants);
intravisit::walk_arm(self, arm);
self.ignore_variant_stack.truncate(len);
} else {
intravisit::walk_arm(self, arm);
}
}
2015-07-31 02:04:06 -05:00
fn visit_pat(&mut self, pat: &hir::Pat) {
2014-09-20 06:26:10 -05:00
let def_map = &self.tcx.def_map;
2014-06-05 17:00:29 -05:00
match pat.node {
2016-02-14 06:25:12 -06:00
PatKind::Struct(_, ref fields, _) => {
self.handle_field_pattern_match(pat, fields);
2014-06-05 17:00:29 -05:00
}
_ if pat_util::pat_is_const(&def_map.borrow(), pat) => {
// it might be the only use of a const
self.lookup_and_handle_definition(pat.id)
}
2014-06-05 17:00:29 -05:00
_ => ()
}
self.ignore_non_const_paths = true;
intravisit::walk_pat(self, pat);
self.ignore_non_const_paths = false;
2014-06-05 17:00:29 -05:00
}
2015-07-31 02:04:06 -05:00
fn visit_path(&mut self, path: &hir::Path, id: ast::NodeId) {
self.lookup_and_handle_definition(id);
intravisit::walk_path(self, path);
}
fn visit_path_list_item(&mut self, path: &hir::Path, item: &hir::PathListItem) {
self.lookup_and_handle_definition(item.node.id());
intravisit::walk_path_list_item(self, path, item);
2013-12-08 01:55:27 -06:00
}
}
fn has_allow_dead_code_or_lang_attr(attrs: &[ast::Attribute]) -> bool {
if attr::contains_name(attrs, "lang") {
return true;
}
let dead_code = lint::builtin::DEAD_CODE.name_lower();
for attr in lint::gather_attrs(attrs) {
match attr {
Ok((ref name, lint::Allow, _))
if &name[..] == dead_code => return true,
_ => (),
}
}
false
}
// 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-09-20 06:26:10 -05:00
worklist: Vec<ast::NodeId>
2013-12-08 01:55:27 -06:00
}
impl<'v> Visitor<'v> for LifeSeeder {
2015-07-31 02:04:06 -05:00
fn visit_item(&mut self, item: &hir::Item) {
let allow_dead_code = has_allow_dead_code_or_lang_attr(&item.attrs);
2014-09-20 06:26:10 -05:00
if allow_dead_code {
self.worklist.push(item.id);
}
2013-12-08 01:55:27 -06:00
match item.node {
2015-07-31 02:04:06 -05:00
hir::ItemEnum(ref enum_def, _) if allow_dead_code => {
2015-10-09 19:28:40 -05:00
self.worklist.extend(enum_def.variants.iter()
.map(|variant| variant.node.data.id()));
2014-09-20 06:26:10 -05:00
}
2015-07-31 02:04:06 -05:00
hir::ItemTrait(_, _, _, ref trait_items) => {
for trait_item in trait_items {
match trait_item.node {
2015-07-31 02:04:06 -05:00
hir::ConstTraitItem(_, Some(_)) |
hir::MethodTraitItem(_, Some(_)) => {
if has_allow_dead_code_or_lang_attr(&trait_item.attrs) {
self.worklist.push(trait_item.id);
}
}
_ => {}
}
}
}
2015-07-31 02:04:06 -05:00
hir::ItemImpl(_, _, _, ref opt_trait, _, ref impl_items) => {
2015-01-31 11:20:46 -06:00
for impl_item in impl_items {
if opt_trait.is_some() ||
has_allow_dead_code_or_lang_attr(&impl_item.attrs) {
self.worklist.push(impl_item.id);
}
2013-12-08 01:55:27 -06:00
}
}
_ => ()
}
}
2013-12-08 01:55:27 -06:00
}
fn create_and_seed_worklist<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
access_levels: &privacy::AccessLevels,
krate: &hir::Crate)
-> Vec<ast::NodeId> {
let mut worklist = Vec::new();
for (id, _) in &access_levels.map {
worklist.push(*id);
2013-12-08 01:55:27 -06:00
}
// Seed entry point
if let Some((id, _)) = *tcx.sess.entry_fn.borrow() {
worklist.push(id);
2013-12-08 01:55:27 -06:00
}
// Seed implemented trait items
let mut life_seeder = LifeSeeder {
2013-12-08 01:55:27 -06:00
worklist: worklist
};
krate.visit_all_items(&mut life_seeder);
2013-12-08 01:55:27 -06:00
return life_seeder.worklist;
2013-12-08 01:55:27 -06:00
}
fn find_live<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
access_levels: &privacy::AccessLevels,
krate: &hir::Crate)
-> Box<HashSet<ast::NodeId>> {
let worklist = create_and_seed_worklist(tcx, access_levels, krate);
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
}
2015-07-31 02:04:06 -05:00
fn get_struct_ctor_id(item: &hir::Item) -> Option<ast::NodeId> {
2013-12-08 01:55:27 -06:00
match item.node {
2015-10-08 15:45:46 -05:00
hir::ItemStruct(ref struct_def, _) if !struct_def.is_struct() => {
2015-10-09 19:28:40 -05:00
Some(struct_def.id())
2015-10-01 19:53:28 -05:00
}
2013-12-08 01:55:27 -06:00
_ => None
}
}
struct DeadVisitor<'a, 'tcx: 'a> {
tcx: TyCtxt<'a, 'tcx, 'tcx>,
live_symbols: Box<HashSet<ast::NodeId>>,
2013-12-08 01:55:27 -06:00
}
impl<'a, 'tcx> DeadVisitor<'a, 'tcx> {
2015-07-31 02:04:06 -05:00
fn should_warn_about_item(&mut self, item: &hir::Item) -> bool {
2014-09-20 06:26:10 -05:00
let should_warn = match item.node {
2015-07-31 02:04:06 -05:00
hir::ItemStatic(..)
| hir::ItemConst(..)
| hir::ItemFn(..)
| hir::ItemEnum(..)
| hir::ItemStruct(..) => true,
2014-09-20 06:26:10 -05:00
_ => false
};
let ctor_id = get_struct_ctor_id(item);
should_warn && !self.symbol_is_live(item.id, ctor_id)
}
fn should_warn_about_field(&mut self, field: &hir::StructField) -> bool {
let field_type = self.tcx.node_id_to_type(field.id);
let is_marker_field = match field_type.ty_to_def_id() {
Some(def_id) => self.tcx.lang_items.items().iter().any(|item| *item == Some(def_id)),
2014-06-05 17:00:29 -05:00
_ => false
};
!field.is_positional()
&& !self.symbol_is_live(field.id, None)
2014-06-05 17:00:29 -05:00
&& !is_marker_field
&& !has_allow_dead_code_or_lang_attr(&field.attrs)
2014-06-05 17:00:29 -05:00
}
2015-07-31 02:04:06 -05:00
fn should_warn_about_variant(&mut self, variant: &hir::Variant_) -> bool {
2015-10-09 19:28:40 -05:00
!self.symbol_is_live(variant.data.id(), None)
&& !has_allow_dead_code_or_lang_attr(&variant.attrs)
2014-09-20 06:26:10 -05:00
}
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 {
2013-12-08 01:55:27 -06:00
if self.live_symbols.contains(&id)
|| 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 items are live, then it's live, too.
2013-12-08 01:55:27 -06:00
// 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.
let impl_items = self.tcx.impl_items.borrow();
if let Some(impl_list) =
self.tcx.inherent_impls.borrow().get(&self.tcx.map.local_def_id(id)) {
for impl_did in impl_list.iter() {
for item_did in impl_items.get(impl_did).unwrap().iter() {
if let Some(item_node_id) =
self.tcx.map.as_local_node_id(item_did.def_id()) {
if self.live_symbols.contains(&item_node_id) {
return true;
2013-12-08 01:55:27 -06:00
}
}
}
}
}
false
}
fn warn_dead_code(&mut self,
id: ast::NodeId,
span: syntax_pos::Span,
name: ast::Name,
node_type: &str) {
let name = name.as_str();
if !name.starts_with("_") {
self.tcx
.sess
.add_lint(lint::builtin::DEAD_CODE,
id,
span,
format!("{} is never used: `{}`", node_type, name));
}
}
2013-12-08 01:55:27 -06:00
}
impl<'a, 'tcx, 'v> Visitor<'v> for DeadVisitor<'a, 'tcx> {
/// Walk nested items in place so that we don't report dead-code
/// on inner functions when the outer function is already getting
/// an error. We could do this also by checking the parents, but
/// this is how the code is setup and it seems harmless enough.
fn visit_nested_item(&mut self, item: hir::ItemId) {
let tcx = self.tcx;
self.visit_item(tcx.map.expect_item(item.id))
}
2015-07-31 02:04:06 -05:00
fn visit_item(&mut self, item: &hir::Item) {
2014-09-20 06:26:10 -05:00
if self.should_warn_about_item(item) {
self.warn_dead_code(
item.id,
item.span,
2015-09-19 20:50:30 -05:00
item.name,
item.node.descriptive_variant()
);
2014-09-20 06:26:10 -05:00
} else {
// Only continue if we didn't warn
intravisit::walk_item(self, item);
}
}
fn visit_variant(&mut self, variant: &hir::Variant, g: &hir::Generics, id: ast::NodeId) {
if self.should_warn_about_variant(&variant.node) {
self.warn_dead_code(variant.node.data.id(), variant.span,
variant.node.name, "variant");
} else {
intravisit::walk_variant(self, variant, g, id);
2013-12-08 01:55:27 -06:00
}
}
2015-07-31 02:04:06 -05:00
fn visit_foreign_item(&mut self, fi: &hir::ForeignItem) {
if !self.symbol_is_live(fi.id, None) {
2015-09-19 20:50:30 -05:00
self.warn_dead_code(fi.id, fi.span, fi.name, fi.node.descriptive_variant());
}
intravisit::walk_foreign_item(self, fi);
}
2015-07-31 02:04:06 -05:00
fn visit_struct_field(&mut self, field: &hir::StructField) {
if self.should_warn_about_field(&field) {
self.warn_dead_code(field.id, field.span,
field.name, "struct field");
2014-06-05 17:00:29 -05:00
}
intravisit::walk_struct_field(self, field);
2014-06-05 17:00:29 -05:00
}
2015-07-31 02:04:06 -05:00
fn visit_impl_item(&mut self, impl_item: &hir::ImplItem) {
match impl_item.node {
2015-11-12 08:57:51 -06:00
hir::ImplItemKind::Const(_, ref expr) => {
if !self.symbol_is_live(impl_item.id, None) {
self.warn_dead_code(impl_item.id, impl_item.span,
2015-09-19 20:50:30 -05:00
impl_item.name, "associated const");
}
intravisit::walk_expr(self, expr)
}
2015-11-12 08:57:51 -06:00
hir::ImplItemKind::Method(_, ref body) => {
if !self.symbol_is_live(impl_item.id, None) {
self.warn_dead_code(impl_item.id, impl_item.span,
2015-09-19 20:50:30 -05:00
impl_item.name, "method");
}
intravisit::walk_block(self, body)
}
2015-11-12 08:57:51 -06:00
hir::ImplItemKind::Type(..) => {}
}
}
// Overwrite so that we don't warn the trait item itself.
2015-07-31 02:04:06 -05:00
fn visit_trait_item(&mut self, trait_item: &hir::TraitItem) {
match trait_item.node {
2015-07-31 02:04:06 -05:00
hir::ConstTraitItem(_, Some(ref expr)) => {
intravisit::walk_expr(self, expr)
}
2015-07-31 02:04:06 -05:00
hir::MethodTraitItem(_, Some(ref body)) => {
intravisit::walk_block(self, body)
}
2015-07-31 02:04:06 -05:00
hir::ConstTraitItem(_, None) |
hir::MethodTraitItem(_, None) |
hir::TypeTraitItem(..) => {}
2013-12-08 01:55:27 -06:00
}
}
}
pub fn check_crate<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
access_levels: &privacy::AccessLevels) {
let _task = tcx.dep_graph.in_task(DepNode::DeadCheck);
2014-09-07 12:09:06 -05:00
let krate = tcx.map.krate();
let live_symbols = find_live(tcx, access_levels, krate);
2013-12-08 01:55:27 -06:00
let mut visitor = DeadVisitor { tcx: tcx, live_symbols: live_symbols };
intravisit::walk_crate(&mut visitor, krate);
2013-12-08 01:55:27 -06:00
}