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