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