]> git.lizzy.rs Git - rust.git/blob - src/librustc/middle/dead.rs
Ensure StorageDead is created even if variable initialization fails
[rust.git] / src / librustc / middle / dead.rs
1 // Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // This implements the dead-code warning pass. It follows middle::reachable
12 // closely. The idea is that all reachable symbols are live, codes called
13 // from live codes are live, and everything else is dead.
14
15 use hir::map as hir_map;
16 use hir::{self, PatKind};
17 use hir::intravisit::{self, Visitor, NestedVisitorMap};
18 use hir::itemlikevisit::ItemLikeVisitor;
19
20 use hir::def::Def;
21 use hir::def_id::{DefId, LOCAL_CRATE};
22 use lint;
23 use middle::privacy;
24 use ty::{self, TyCtxt};
25 use util::nodemap::FxHashSet;
26
27 use syntax::{ast, codemap};
28 use syntax::attr;
29 use syntax_pos;
30
31 // Any local node that may call something in its body block should be
32 // explored. For example, if it's a live NodeItem that is a
33 // function, then we should explore its block to check for codes that
34 // may need to be marked as live.
35 fn should_explore<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
36                             node_id: ast::NodeId) -> bool {
37     match tcx.hir.find(node_id) {
38         Some(hir_map::NodeItem(..)) |
39         Some(hir_map::NodeImplItem(..)) |
40         Some(hir_map::NodeForeignItem(..)) |
41         Some(hir_map::NodeTraitItem(..)) =>
42             true,
43         _ =>
44             false
45     }
46 }
47
48 struct MarkSymbolVisitor<'a, 'tcx: 'a> {
49     worklist: Vec<ast::NodeId>,
50     tcx: TyCtxt<'a, 'tcx, 'tcx>,
51     tables: &'a ty::TypeckTables<'tcx>,
52     live_symbols: Box<FxHashSet<ast::NodeId>>,
53     repr_has_repr_c: bool,
54     in_pat: bool,
55     inherited_pub_visibility: bool,
56     ignore_variant_stack: Vec<DefId>,
57 }
58
59 impl<'a, 'tcx> MarkSymbolVisitor<'a, 'tcx> {
60     fn check_def_id(&mut self, def_id: DefId) {
61         if let Some(node_id) = self.tcx.hir.as_local_node_id(def_id) {
62             if should_explore(self.tcx, node_id) {
63                 self.worklist.push(node_id);
64             }
65             self.live_symbols.insert(node_id);
66         }
67     }
68
69     fn insert_def_id(&mut self, def_id: DefId) {
70         if let Some(node_id) = self.tcx.hir.as_local_node_id(def_id) {
71             debug_assert!(!should_explore(self.tcx, node_id));
72             self.live_symbols.insert(node_id);
73         }
74     }
75
76     fn handle_definition(&mut self, def: Def) {
77         match def {
78             Def::Const(_) | Def::AssociatedConst(..) | Def::TyAlias(_) => {
79                 self.check_def_id(def.def_id());
80             }
81             _ if self.in_pat => (),
82             Def::PrimTy(..) | Def::SelfTy(..) |
83             Def::Local(..) | Def::Upvar(..) => {}
84             Def::Variant(variant_id) | Def::VariantCtor(variant_id, ..) => {
85                 if let Some(enum_id) = self.tcx.parent_def_id(variant_id) {
86                     self.check_def_id(enum_id);
87                 }
88                 if !self.ignore_variant_stack.contains(&variant_id) {
89                     self.check_def_id(variant_id);
90                 }
91             }
92             _ => {
93                 self.check_def_id(def.def_id());
94             }
95         }
96     }
97
98     fn lookup_and_handle_method(&mut self, id: hir::HirId) {
99         if let Some(def) = self.tables.type_dependent_defs().get(id) {
100             self.check_def_id(def.def_id());
101         } else {
102             bug!("no type-dependent def for method");
103         }
104     }
105
106     fn handle_field_access(&mut self, lhs: &hir::Expr, node_id: ast::NodeId) {
107         match self.tables.expr_ty_adjusted(lhs).sty {
108             ty::TyAdt(def, _) => {
109                 let index = self.tcx.field_index(node_id, self.tables);
110                 self.insert_def_id(def.non_enum_variant().fields[index].did);
111             }
112             ty::TyTuple(..) => {}
113             _ => span_bug!(lhs.span, "named field access on non-ADT"),
114         }
115     }
116
117     fn handle_field_pattern_match(&mut self, lhs: &hir::Pat, def: Def,
118                                   pats: &[codemap::Spanned<hir::FieldPat>]) {
119         let variant = match self.tables.node_id_to_type(lhs.hir_id).sty {
120             ty::TyAdt(adt, _) => adt.variant_of_def(def),
121             _ => span_bug!(lhs.span, "non-ADT in struct pattern")
122         };
123         for pat in pats {
124             if let PatKind::Wild = pat.node.pat.node {
125                 continue;
126             }
127             let index = self.tcx.field_index(pat.node.id, self.tables);
128             self.insert_def_id(variant.fields[index].did);
129         }
130     }
131
132     fn mark_live_symbols(&mut self) {
133         let mut scanned = FxHashSet();
134         while !self.worklist.is_empty() {
135             let id = self.worklist.pop().unwrap();
136             if scanned.contains(&id) {
137                 continue
138             }
139             scanned.insert(id);
140
141             if let Some(ref node) = self.tcx.hir.find(id) {
142                 self.live_symbols.insert(id);
143                 self.visit_node(node);
144             }
145         }
146     }
147
148     fn visit_node(&mut self, node: &hir_map::Node<'tcx>) {
149         let had_repr_c = self.repr_has_repr_c;
150         self.repr_has_repr_c = false;
151         let had_inherited_pub_visibility = self.inherited_pub_visibility;
152         self.inherited_pub_visibility = false;
153         match *node {
154             hir_map::NodeItem(item) => {
155                 match item.node {
156                     hir::ItemStruct(..) | hir::ItemUnion(..) => {
157                         let def_id = self.tcx.hir.local_def_id(item.id);
158                         let def = self.tcx.adt_def(def_id);
159                         self.repr_has_repr_c = def.repr.c();
160
161                         intravisit::walk_item(self, &item);
162                     }
163                     hir::ItemEnum(..) => {
164                         self.inherited_pub_visibility = item.vis.node.is_pub();
165                         intravisit::walk_item(self, &item);
166                     }
167                     hir::ItemFn(..)
168                     | hir::ItemTy(..)
169                     | hir::ItemStatic(..)
170                     | hir::ItemConst(..) => {
171                         intravisit::walk_item(self, &item);
172                     }
173                     _ => ()
174                 }
175             }
176             hir_map::NodeTraitItem(trait_item) => {
177                 intravisit::walk_trait_item(self, trait_item);
178             }
179             hir_map::NodeImplItem(impl_item) => {
180                 intravisit::walk_impl_item(self, impl_item);
181             }
182             hir_map::NodeForeignItem(foreign_item) => {
183                 intravisit::walk_foreign_item(self, &foreign_item);
184             }
185             _ => ()
186         }
187         self.repr_has_repr_c = had_repr_c;
188         self.inherited_pub_visibility = had_inherited_pub_visibility;
189     }
190
191     fn mark_as_used_if_union(&mut self, adt: &ty::AdtDef, fields: &hir::HirVec<hir::Field>) {
192         if adt.is_union() && adt.non_enum_variant().fields.len() > 1 && adt.did.is_local() {
193             for field in fields {
194                 let index = self.tcx.field_index(field.id, self.tables);
195                 self.insert_def_id(adt.non_enum_variant().fields[index].did);
196             }
197         }
198     }
199 }
200
201 impl<'a, 'tcx> Visitor<'tcx> for MarkSymbolVisitor<'a, 'tcx> {
202     fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
203         NestedVisitorMap::None
204     }
205
206     fn visit_nested_body(&mut self, body: hir::BodyId) {
207         let old_tables = self.tables;
208         self.tables = self.tcx.body_tables(body);
209         let body = self.tcx.hir.body(body);
210         self.visit_body(body);
211         self.tables = old_tables;
212     }
213
214     fn visit_variant_data(&mut self, def: &'tcx hir::VariantData, _: ast::Name,
215                         _: &hir::Generics, _: ast::NodeId, _: syntax_pos::Span) {
216         let has_repr_c = self.repr_has_repr_c;
217         let inherited_pub_visibility = self.inherited_pub_visibility;
218         let live_fields = def.fields().iter().filter(|f| {
219             has_repr_c || inherited_pub_visibility || f.vis.node.is_pub()
220         });
221         self.live_symbols.extend(live_fields.map(|f| f.id));
222
223         intravisit::walk_struct_def(self, def);
224     }
225
226     fn visit_expr(&mut self, expr: &'tcx hir::Expr) {
227         match expr.node {
228             hir::ExprPath(ref qpath @ hir::QPath::TypeRelative(..)) => {
229                 let def = self.tables.qpath_def(qpath, expr.hir_id);
230                 self.handle_definition(def);
231             }
232             hir::ExprMethodCall(..) => {
233                 self.lookup_and_handle_method(expr.hir_id);
234             }
235             hir::ExprField(ref lhs, ..) => {
236                 self.handle_field_access(&lhs, expr.id);
237             }
238             hir::ExprStruct(_, ref fields, _) => {
239                 if let ty::TypeVariants::TyAdt(ref adt, _) = self.tables.expr_ty(expr).sty {
240                     self.mark_as_used_if_union(adt, fields);
241                 }
242             }
243             _ => ()
244         }
245
246         intravisit::walk_expr(self, expr);
247     }
248
249     fn visit_arm(&mut self, arm: &'tcx hir::Arm) {
250         if arm.pats.len() == 1 {
251             let variants = arm.pats[0].necessary_variants();
252
253             // Inside the body, ignore constructions of variants
254             // necessary for the pattern to match. Those construction sites
255             // can't be reached unless the variant is constructed elsewhere.
256             let len = self.ignore_variant_stack.len();
257             self.ignore_variant_stack.extend_from_slice(&variants);
258             intravisit::walk_arm(self, arm);
259             self.ignore_variant_stack.truncate(len);
260         } else {
261             intravisit::walk_arm(self, arm);
262         }
263     }
264
265     fn visit_pat(&mut self, pat: &'tcx hir::Pat) {
266         match pat.node {
267             PatKind::Struct(hir::QPath::Resolved(_, ref path), ref fields, _) => {
268                 self.handle_field_pattern_match(pat, path.def, fields);
269             }
270             PatKind::Path(ref qpath @ hir::QPath::TypeRelative(..)) => {
271                 let def = self.tables.qpath_def(qpath, pat.hir_id);
272                 self.handle_definition(def);
273             }
274             _ => ()
275         }
276
277         self.in_pat = true;
278         intravisit::walk_pat(self, pat);
279         self.in_pat = false;
280     }
281
282     fn visit_path(&mut self, path: &'tcx hir::Path, _: ast::NodeId) {
283         self.handle_definition(path.def);
284         intravisit::walk_path(self, path);
285     }
286 }
287
288 fn has_allow_dead_code_or_lang_attr(tcx: TyCtxt,
289                                     id: ast::NodeId,
290                                     attrs: &[ast::Attribute]) -> bool {
291     if attr::contains_name(attrs, "lang") || attr::contains_name(attrs, "panic_implementation") {
292         return true;
293     }
294
295     // #[used] also keeps the item alive forcefully,
296     // e.g. for placing it in a specific section.
297     if attr::contains_name(attrs, "used") {
298         return true;
299     }
300
301     // Don't lint about global allocators
302     if attr::contains_name(attrs, "global_allocator") {
303         return true;
304     }
305
306     // These constants are special for wasm
307     if attr::contains_name(attrs, "wasm_custom_section") {
308         return true;
309     }
310
311     tcx.lint_level_at_node(lint::builtin::DEAD_CODE, id).0 == lint::Allow
312 }
313
314 // This visitor seeds items that
315 //   1) We want to explicitly consider as live:
316 //     * Item annotated with #[allow(dead_code)]
317 //         - This is done so that if we want to suppress warnings for a
318 //           group of dead functions, we only have to annotate the "root".
319 //           For example, if both `f` and `g` are dead and `f` calls `g`,
320 //           then annotating `f` with `#[allow(dead_code)]` will suppress
321 //           warning for both `f` and `g`.
322 //     * Item annotated with #[lang=".."]
323 //         - This is because lang items are always callable from elsewhere.
324 //   or
325 //   2) We are not sure to be live or not
326 //     * Implementation of a trait method
327 struct LifeSeeder<'k, 'tcx: 'k> {
328     worklist: Vec<ast::NodeId>,
329     krate: &'k hir::Crate,
330     tcx: TyCtxt<'k, 'tcx, 'tcx>,
331 }
332
333 impl<'v, 'k, 'tcx> ItemLikeVisitor<'v> for LifeSeeder<'k, 'tcx> {
334     fn visit_item(&mut self, item: &hir::Item) {
335         let allow_dead_code = has_allow_dead_code_or_lang_attr(self.tcx,
336                                                                item.id,
337                                                                &item.attrs);
338         if allow_dead_code {
339             self.worklist.push(item.id);
340         }
341         match item.node {
342             hir::ItemEnum(ref enum_def, _) if allow_dead_code => {
343                 self.worklist.extend(enum_def.variants.iter()
344                                                       .map(|variant| variant.node.data.id()));
345             }
346             hir::ItemTrait(.., ref trait_item_refs) => {
347                 for trait_item_ref in trait_item_refs {
348                     let trait_item = self.krate.trait_item(trait_item_ref.id);
349                     match trait_item.node {
350                         hir::TraitItemKind::Const(_, Some(_)) |
351                         hir::TraitItemKind::Method(_, hir::TraitMethod::Provided(_)) => {
352                             if has_allow_dead_code_or_lang_attr(self.tcx,
353                                                                 trait_item.id,
354                                                                 &trait_item.attrs) {
355                                 self.worklist.push(trait_item.id);
356                             }
357                         }
358                         _ => {}
359                     }
360                 }
361             }
362             hir::ItemImpl(.., ref opt_trait, _, ref impl_item_refs) => {
363                 for impl_item_ref in impl_item_refs {
364                     let impl_item = self.krate.impl_item(impl_item_ref.id);
365                     if opt_trait.is_some() ||
366                             has_allow_dead_code_or_lang_attr(self.tcx,
367                                                              impl_item.id,
368                                                              &impl_item.attrs) {
369                         self.worklist.push(impl_item_ref.id.node_id);
370                     }
371                 }
372             }
373             _ => ()
374         }
375     }
376
377     fn visit_trait_item(&mut self, _item: &hir::TraitItem) {
378         // ignore: we are handling this in `visit_item` above
379     }
380
381     fn visit_impl_item(&mut self, _item: &hir::ImplItem) {
382         // ignore: we are handling this in `visit_item` above
383     }
384 }
385
386 fn create_and_seed_worklist<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
387                                       access_levels: &privacy::AccessLevels,
388                                       krate: &hir::Crate)
389                                       -> Vec<ast::NodeId> {
390     let mut worklist = Vec::new();
391     for (id, _) in &access_levels.map {
392         worklist.push(*id);
393     }
394
395     // Seed entry point
396     if let Some((id, _, _)) = *tcx.sess.entry_fn.borrow() {
397         worklist.push(id);
398     }
399
400     // Seed implemented trait items
401     let mut life_seeder = LifeSeeder {
402         worklist,
403         krate,
404         tcx,
405     };
406     krate.visit_all_item_likes(&mut life_seeder);
407
408     return life_seeder.worklist;
409 }
410
411 fn find_live<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
412                        access_levels: &privacy::AccessLevels,
413                        krate: &hir::Crate)
414                        -> Box<FxHashSet<ast::NodeId>> {
415     let worklist = create_and_seed_worklist(tcx, access_levels, krate);
416     let mut symbol_visitor = MarkSymbolVisitor {
417         worklist,
418         tcx,
419         tables: &ty::TypeckTables::empty(None),
420         live_symbols: box FxHashSet(),
421         repr_has_repr_c: false,
422         in_pat: false,
423         inherited_pub_visibility: false,
424         ignore_variant_stack: vec![],
425     };
426     symbol_visitor.mark_live_symbols();
427     symbol_visitor.live_symbols
428 }
429
430 fn get_struct_ctor_id(item: &hir::Item) -> Option<ast::NodeId> {
431     match item.node {
432         hir::ItemStruct(ref struct_def, _) if !struct_def.is_struct() => {
433             Some(struct_def.id())
434         }
435         _ => None
436     }
437 }
438
439 struct DeadVisitor<'a, 'tcx: 'a> {
440     tcx: TyCtxt<'a, 'tcx, 'tcx>,
441     live_symbols: Box<FxHashSet<ast::NodeId>>,
442 }
443
444 impl<'a, 'tcx> DeadVisitor<'a, 'tcx> {
445     fn should_warn_about_item(&mut self, item: &hir::Item) -> bool {
446         let should_warn = match item.node {
447             hir::ItemStatic(..)
448             | hir::ItemConst(..)
449             | hir::ItemFn(..)
450             | hir::ItemTy(..)
451             | hir::ItemEnum(..)
452             | hir::ItemStruct(..)
453             | hir::ItemUnion(..) => true,
454             _ => false
455         };
456         let ctor_id = get_struct_ctor_id(item);
457         should_warn && !self.symbol_is_live(item.id, ctor_id)
458     }
459
460     fn should_warn_about_field(&mut self, field: &hir::StructField) -> bool {
461         let field_type = self.tcx.type_of(self.tcx.hir.local_def_id(field.id));
462         let is_marker_field = match field_type.ty_to_def_id() {
463             Some(def_id) => self.tcx.lang_items().items().iter().any(|item| *item == Some(def_id)),
464             _ => false
465         };
466         !field.is_positional()
467             && !self.symbol_is_live(field.id, None)
468             && !is_marker_field
469             && !has_allow_dead_code_or_lang_attr(self.tcx, field.id, &field.attrs)
470     }
471
472     fn should_warn_about_variant(&mut self, variant: &hir::Variant_) -> bool {
473         !self.symbol_is_live(variant.data.id(), None)
474             && !has_allow_dead_code_or_lang_attr(self.tcx,
475                                                  variant.data.id(),
476                                                  &variant.attrs)
477     }
478
479     fn should_warn_about_foreign_item(&mut self, fi: &hir::ForeignItem) -> bool {
480         !self.symbol_is_live(fi.id, None)
481             && !has_allow_dead_code_or_lang_attr(self.tcx, fi.id, &fi.attrs)
482     }
483
484     // id := node id of an item's definition.
485     // ctor_id := `Some` if the item is a struct_ctor (tuple struct),
486     //            `None` otherwise.
487     // If the item is a struct_ctor, then either its `id` or
488     // `ctor_id` (unwrapped) is in the live_symbols set. More specifically,
489     // DefMap maps the ExprPath of a struct_ctor to the node referred by
490     // `ctor_id`. On the other hand, in a statement like
491     // `type <ident> <generics> = <ty>;` where <ty> refers to a struct_ctor,
492     // DefMap maps <ty> to `id` instead.
493     fn symbol_is_live(&mut self,
494                       id: ast::NodeId,
495                       ctor_id: Option<ast::NodeId>)
496                       -> bool {
497         if self.live_symbols.contains(&id)
498            || ctor_id.map_or(false,
499                              |ctor| self.live_symbols.contains(&ctor)) {
500             return true;
501         }
502         // If it's a type whose items are live, then it's live, too.
503         // This is done to handle the case where, for example, the static
504         // method of a private type is used, but the type itself is never
505         // called directly.
506         let def_id = self.tcx.hir.local_def_id(id);
507         let inherent_impls = self.tcx.inherent_impls(def_id);
508         for &impl_did in inherent_impls.iter() {
509             for &item_did in &self.tcx.associated_item_def_ids(impl_did)[..] {
510                 if let Some(item_node_id) = self.tcx.hir.as_local_node_id(item_did) {
511                     if self.live_symbols.contains(&item_node_id) {
512                         return true;
513                     }
514                 }
515             }
516         }
517         false
518     }
519
520     fn warn_dead_code(&mut self,
521                       id: ast::NodeId,
522                       span: syntax_pos::Span,
523                       name: ast::Name,
524                       node_type: &str,
525                       participle: &str) {
526         if !name.as_str().starts_with("_") {
527             self.tcx
528                 .lint_node(lint::builtin::DEAD_CODE,
529                            id,
530                            span,
531                            &format!("{} is never {}: `{}`",
532                                     node_type, participle, name));
533         }
534     }
535 }
536
537 impl<'a, 'tcx> Visitor<'tcx> for DeadVisitor<'a, 'tcx> {
538     /// Walk nested items in place so that we don't report dead-code
539     /// on inner functions when the outer function is already getting
540     /// an error. We could do this also by checking the parents, but
541     /// this is how the code is setup and it seems harmless enough.
542     fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
543         NestedVisitorMap::All(&self.tcx.hir)
544     }
545
546     fn visit_item(&mut self, item: &'tcx hir::Item) {
547         if self.should_warn_about_item(item) {
548             // For items that have a definition with a signature followed by a
549             // block, point only at the signature.
550             let span = match item.node {
551                 hir::ItemFn(..) |
552                 hir::ItemMod(..) |
553                 hir::ItemEnum(..) |
554                 hir::ItemStruct(..) |
555                 hir::ItemUnion(..) |
556                 hir::ItemTrait(..) |
557                 hir::ItemImpl(..) => self.tcx.sess.codemap().def_span(item.span),
558                 _ => item.span,
559             };
560             self.warn_dead_code(
561                 item.id,
562                 span,
563                 item.name,
564                 item.node.descriptive_variant(),
565                 "used",
566             );
567         } else {
568             // Only continue if we didn't warn
569             intravisit::walk_item(self, item);
570         }
571     }
572
573     fn visit_variant(&mut self,
574                      variant: &'tcx hir::Variant,
575                      g: &'tcx hir::Generics,
576                      id: ast::NodeId) {
577         if self.should_warn_about_variant(&variant.node) {
578             self.warn_dead_code(variant.node.data.id(), variant.span, variant.node.name,
579                                 "variant", "constructed");
580         } else {
581             intravisit::walk_variant(self, variant, g, id);
582         }
583     }
584
585     fn visit_foreign_item(&mut self, fi: &'tcx hir::ForeignItem) {
586         if self.should_warn_about_foreign_item(fi) {
587             self.warn_dead_code(fi.id, fi.span, fi.name,
588                                 fi.node.descriptive_variant(), "used");
589         }
590         intravisit::walk_foreign_item(self, fi);
591     }
592
593     fn visit_struct_field(&mut self, field: &'tcx hir::StructField) {
594         if self.should_warn_about_field(&field) {
595             self.warn_dead_code(field.id, field.span, field.ident.name, "field", "used");
596         }
597         intravisit::walk_struct_field(self, field);
598     }
599
600     fn visit_impl_item(&mut self, impl_item: &'tcx hir::ImplItem) {
601         match impl_item.node {
602             hir::ImplItemKind::Const(_, body_id) => {
603                 if !self.symbol_is_live(impl_item.id, None) {
604                     self.warn_dead_code(impl_item.id,
605                                         impl_item.span,
606                                         impl_item.ident.name,
607                                         "associated const",
608                                         "used");
609                 }
610                 self.visit_nested_body(body_id)
611             }
612             hir::ImplItemKind::Method(_, body_id) => {
613                 if !self.symbol_is_live(impl_item.id, None) {
614                     let span = self.tcx.sess.codemap().def_span(impl_item.span);
615                     self.warn_dead_code(impl_item.id, span, impl_item.ident.name, "method", "used");
616                 }
617                 self.visit_nested_body(body_id)
618             }
619             hir::ImplItemKind::Type(..) => {}
620         }
621     }
622
623     // Overwrite so that we don't warn the trait item itself.
624     fn visit_trait_item(&mut self, trait_item: &'tcx hir::TraitItem) {
625         match trait_item.node {
626             hir::TraitItemKind::Const(_, Some(body_id)) |
627             hir::TraitItemKind::Method(_, hir::TraitMethod::Provided(body_id)) => {
628                 self.visit_nested_body(body_id)
629             }
630             hir::TraitItemKind::Const(_, None) |
631             hir::TraitItemKind::Method(_, hir::TraitMethod::Required(_)) |
632             hir::TraitItemKind::Type(..) => {}
633         }
634     }
635 }
636
637 pub fn check_crate<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>) {
638     let access_levels = &tcx.privacy_access_levels(LOCAL_CRATE);
639     let krate = tcx.hir.krate();
640     let live_symbols = find_live(tcx, access_levels, krate);
641     let mut visitor = DeadVisitor {
642         tcx,
643         live_symbols,
644     };
645     intravisit::walk_crate(&mut visitor, krate);
646 }