]> git.lizzy.rs Git - rust.git/blob - src/librustc/middle/dead.rs
22bdf66b339592d953f4326db547e70765b30c96
[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 dep_graph::DepNode;
16 use front::map as ast_map;
17 use rustc_front::hir::{self, PatKind};
18 use rustc_front::intravisit::{self, Visitor};
19
20 use middle::{pat_util, privacy, ty};
21 use middle::def::Def;
22 use middle::def_id::{DefId};
23 use lint;
24
25 use std::collections::HashSet;
26 use syntax::{ast, codemap};
27 use syntax::attr::{self, AttrMetaMethods};
28
29 // Any local node that may call something in its body block should be
30 // explored. For example, if it's a live NodeItem that is a
31 // function, then we should explore its block to check for codes that
32 // may need to be marked as live.
33 fn should_explore(tcx: &ty::ctxt, node_id: ast::NodeId) -> bool {
34     match tcx.map.find(node_id) {
35         Some(ast_map::NodeItem(..)) |
36         Some(ast_map::NodeImplItem(..)) |
37         Some(ast_map::NodeForeignItem(..)) |
38         Some(ast_map::NodeTraitItem(..)) =>
39             true,
40         _ =>
41             false
42     }
43 }
44
45 struct MarkSymbolVisitor<'a, 'tcx: 'a> {
46     worklist: Vec<ast::NodeId>,
47     tcx: &'a ty::ctxt<'tcx>,
48     live_symbols: Box<HashSet<ast::NodeId>>,
49     struct_has_extern_repr: bool,
50     ignore_non_const_paths: bool,
51     inherited_pub_visibility: bool,
52     ignore_variant_stack: Vec<DefId>,
53 }
54
55 impl<'a, 'tcx> MarkSymbolVisitor<'a, 'tcx> {
56     fn new(tcx: &'a ty::ctxt<'tcx>,
57            worklist: Vec<ast::NodeId>) -> MarkSymbolVisitor<'a, 'tcx> {
58         MarkSymbolVisitor {
59             worklist: worklist,
60             tcx: tcx,
61             live_symbols: box HashSet::new(),
62             struct_has_extern_repr: false,
63             ignore_non_const_paths: false,
64             inherited_pub_visibility: false,
65             ignore_variant_stack: vec![],
66         }
67     }
68
69     fn check_def_id(&mut self, def_id: DefId) {
70         if let Some(node_id) = self.tcx.map.as_local_node_id(def_id) {
71             if should_explore(self.tcx, node_id) {
72                 self.worklist.push(node_id);
73             }
74             self.live_symbols.insert(node_id);
75         }
76     }
77
78     fn insert_def_id(&mut self, def_id: DefId) {
79         if let Some(node_id) = self.tcx.map.as_local_node_id(def_id) {
80             debug_assert!(!should_explore(self.tcx, node_id));
81             self.live_symbols.insert(node_id);
82         }
83     }
84
85     fn lookup_and_handle_definition(&mut self, id: &ast::NodeId) {
86         use middle::ty::TypeVariants::{TyEnum, TyStruct};
87
88         // If `bar` is a trait item, make sure to mark Foo as alive in `Foo::bar`
89         self.tcx.tables.borrow().item_substs.get(id)
90             .and_then(|substs| substs.substs.self_ty())
91             .map(|ty| match ty.sty {
92                 TyEnum(tyid, _) | TyStruct(tyid, _) => self.check_def_id(tyid.did),
93                 _ => (),
94             });
95
96         self.tcx.def_map.borrow().get(id).map(|def| {
97             match def.full_def() {
98                 Def::Const(_) | Def::AssociatedConst(..) => {
99                     self.check_def_id(def.def_id());
100                 }
101                 _ if self.ignore_non_const_paths => (),
102                 Def::PrimTy(_) => (),
103                 Def::SelfTy(..) => (),
104                 Def::Variant(enum_id, variant_id) => {
105                     self.check_def_id(enum_id);
106                     if !self.ignore_variant_stack.contains(&variant_id) {
107                         self.check_def_id(variant_id);
108                     }
109                 }
110                 _ => {
111                     self.check_def_id(def.def_id());
112                 }
113             }
114         });
115     }
116
117     fn lookup_and_handle_method(&mut self, id: ast::NodeId) {
118         let method_call = ty::MethodCall::expr(id);
119         let method = self.tcx.tables.borrow().method_map[&method_call];
120         self.check_def_id(method.def_id);
121     }
122
123     fn handle_field_access(&mut self, lhs: &hir::Expr, name: ast::Name) {
124         if let ty::TyStruct(def, _) = self.tcx.expr_ty_adjusted(lhs).sty {
125             self.insert_def_id(def.struct_variant().field_named(name).did);
126         } else {
127             self.tcx.sess.span_bug(lhs.span, "named field access on non-struct")
128         }
129     }
130
131     fn handle_tup_field_access(&mut self, lhs: &hir::Expr, idx: usize) {
132         if let ty::TyStruct(def, _) = self.tcx.expr_ty_adjusted(lhs).sty {
133             self.insert_def_id(def.struct_variant().fields[idx].did);
134         }
135     }
136
137     fn handle_field_pattern_match(&mut self, lhs: &hir::Pat,
138                                   pats: &[codemap::Spanned<hir::FieldPat>]) {
139         let def = self.tcx.def_map.borrow().get(&lhs.id).unwrap().full_def();
140         let pat_ty = self.tcx.node_id_to_type(lhs.id);
141         let variant = match pat_ty.sty {
142             ty::TyStruct(adt, _) | ty::TyEnum(adt, _) => adt.variant_of_def(def),
143             _ => self.tcx.sess.span_bug(lhs.span, "non-ADT in struct pattern")
144         };
145         for pat in pats {
146             if let PatKind::Wild = pat.node.pat.node {
147                 continue;
148             }
149             self.insert_def_id(variant.field_named(pat.node.name).did);
150         }
151     }
152
153     fn mark_live_symbols(&mut self) {
154         let mut scanned = HashSet::new();
155         while !self.worklist.is_empty() {
156             let id = self.worklist.pop().unwrap();
157             if scanned.contains(&id) {
158                 continue
159             }
160             scanned.insert(id);
161
162             match self.tcx.map.find(id) {
163                 Some(ref node) => {
164                     self.live_symbols.insert(id);
165                     self.visit_node(node);
166                 }
167                 None => (),
168             }
169         }
170     }
171
172     fn visit_node(&mut self, node: &ast_map::Node) {
173         let had_extern_repr = self.struct_has_extern_repr;
174         self.struct_has_extern_repr = false;
175         let had_inherited_pub_visibility = self.inherited_pub_visibility;
176         self.inherited_pub_visibility = false;
177         match *node {
178             ast_map::NodeItem(item) => {
179                 match item.node {
180                     hir::ItemStruct(..) => {
181                         self.struct_has_extern_repr = item.attrs.iter().any(|attr| {
182                             attr::find_repr_attrs(self.tcx.sess.diagnostic(), attr)
183                                 .contains(&attr::ReprExtern)
184                         });
185
186                         intravisit::walk_item(self, &item);
187                     }
188                     hir::ItemEnum(..) => {
189                         self.inherited_pub_visibility = item.vis == hir::Public;
190                         intravisit::walk_item(self, &item);
191                     }
192                     hir::ItemFn(..)
193                     | hir::ItemTy(..)
194                     | hir::ItemStatic(..)
195                     | hir::ItemConst(..) => {
196                         intravisit::walk_item(self, &item);
197                     }
198                     _ => ()
199                 }
200             }
201             ast_map::NodeTraitItem(trait_item) => {
202                 intravisit::walk_trait_item(self, trait_item);
203             }
204             ast_map::NodeImplItem(impl_item) => {
205                 intravisit::walk_impl_item(self, impl_item);
206             }
207             ast_map::NodeForeignItem(foreign_item) => {
208                 intravisit::walk_foreign_item(self, &foreign_item);
209             }
210             _ => ()
211         }
212         self.struct_has_extern_repr = had_extern_repr;
213         self.inherited_pub_visibility = had_inherited_pub_visibility;
214     }
215 }
216
217 impl<'a, 'tcx, 'v> Visitor<'v> for MarkSymbolVisitor<'a, 'tcx> {
218
219     fn visit_variant_data(&mut self, def: &hir::VariantData, _: ast::Name,
220                         _: &hir::Generics, _: ast::NodeId, _: codemap::Span) {
221         let has_extern_repr = self.struct_has_extern_repr;
222         let inherited_pub_visibility = self.inherited_pub_visibility;
223         let live_fields = def.fields().iter().filter(|f| {
224             has_extern_repr || inherited_pub_visibility || f.node.vis == hir::Public
225         });
226         self.live_symbols.extend(live_fields.map(|f| f.node.id));
227
228         intravisit::walk_struct_def(self, def);
229     }
230
231     fn visit_expr(&mut self, expr: &hir::Expr) {
232         match expr.node {
233             hir::ExprMethodCall(..) => {
234                 self.lookup_and_handle_method(expr.id);
235             }
236             hir::ExprField(ref lhs, ref name) => {
237                 self.handle_field_access(&lhs, name.node);
238             }
239             hir::ExprTupField(ref lhs, idx) => {
240                 self.handle_tup_field_access(&lhs, idx.node);
241             }
242             _ => ()
243         }
244
245         intravisit::walk_expr(self, expr);
246     }
247
248     fn visit_arm(&mut self, arm: &hir::Arm) {
249         if arm.pats.len() == 1 {
250             let pat = &*arm.pats[0];
251             let variants = pat_util::necessary_variants(&self.tcx.def_map.borrow(), pat);
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: &hir::Pat) {
266         let def_map = &self.tcx.def_map;
267         match pat.node {
268             PatKind::Struct(_, ref fields, _) => {
269                 self.handle_field_pattern_match(pat, fields);
270             }
271             _ if pat_util::pat_is_const(&def_map.borrow(), pat) => {
272                 // it might be the only use of a const
273                 self.lookup_and_handle_definition(&pat.id)
274             }
275             _ => ()
276         }
277
278         self.ignore_non_const_paths = true;
279         intravisit::walk_pat(self, pat);
280         self.ignore_non_const_paths = false;
281     }
282
283     fn visit_path(&mut self, path: &hir::Path, id: ast::NodeId) {
284         self.lookup_and_handle_definition(&id);
285         intravisit::walk_path(self, path);
286     }
287
288     fn visit_path_list_item(&mut self, path: &hir::Path, item: &hir::PathListItem) {
289         self.lookup_and_handle_definition(&item.node.id());
290         intravisit::walk_path_list_item(self, path, item);
291     }
292 }
293
294 fn has_allow_dead_code_or_lang_attr(attrs: &[ast::Attribute]) -> bool {
295     if attr::contains_name(attrs, "lang") {
296         return true;
297     }
298
299     let dead_code = lint::builtin::DEAD_CODE.name_lower();
300     for attr in lint::gather_attrs(attrs) {
301         match attr {
302             Ok((ref name, lint::Allow, _))
303                 if &name[..] == dead_code => return true,
304             _ => (),
305         }
306     }
307     false
308 }
309
310 // This visitor seeds items that
311 //   1) We want to explicitly consider as live:
312 //     * Item annotated with #[allow(dead_code)]
313 //         - This is done so that if we want to suppress warnings for a
314 //           group of dead functions, we only have to annotate the "root".
315 //           For example, if both `f` and `g` are dead and `f` calls `g`,
316 //           then annotating `f` with `#[allow(dead_code)]` will suppress
317 //           warning for both `f` and `g`.
318 //     * Item annotated with #[lang=".."]
319 //         - This is because lang items are always callable from elsewhere.
320 //   or
321 //   2) We are not sure to be live or not
322 //     * Implementation of a trait method
323 struct LifeSeeder {
324     worklist: Vec<ast::NodeId>
325 }
326
327 impl<'v> Visitor<'v> for LifeSeeder {
328     fn visit_item(&mut self, item: &hir::Item) {
329         let allow_dead_code = has_allow_dead_code_or_lang_attr(&item.attrs);
330         if allow_dead_code {
331             self.worklist.push(item.id);
332         }
333         match item.node {
334             hir::ItemEnum(ref enum_def, _) if allow_dead_code => {
335                 self.worklist.extend(enum_def.variants.iter()
336                                                       .map(|variant| variant.node.data.id()));
337             }
338             hir::ItemTrait(_, _, _, ref trait_items) => {
339                 for trait_item in trait_items {
340                     match trait_item.node {
341                         hir::ConstTraitItem(_, Some(_)) |
342                         hir::MethodTraitItem(_, Some(_)) => {
343                             if has_allow_dead_code_or_lang_attr(&trait_item.attrs) {
344                                 self.worklist.push(trait_item.id);
345                             }
346                         }
347                         _ => {}
348                     }
349                 }
350             }
351             hir::ItemImpl(_, _, _, ref opt_trait, _, ref impl_items) => {
352                 for impl_item in impl_items {
353                     match impl_item.node {
354                         hir::ImplItemKind::Const(..) |
355                         hir::ImplItemKind::Method(..) => {
356                             if opt_trait.is_some() ||
357                                     has_allow_dead_code_or_lang_attr(&impl_item.attrs) {
358                                 self.worklist.push(impl_item.id);
359                             }
360                         }
361                         hir::ImplItemKind::Type(_) => {}
362                     }
363                 }
364             }
365             _ => ()
366         }
367     }
368 }
369
370 fn create_and_seed_worklist(tcx: &ty::ctxt,
371                             access_levels: &privacy::AccessLevels,
372                             krate: &hir::Crate) -> Vec<ast::NodeId> {
373     let mut worklist = Vec::new();
374     for (id, _) in &access_levels.map {
375         worklist.push(*id);
376     }
377
378     // Seed entry point
379     match *tcx.sess.entry_fn.borrow() {
380         Some((id, _)) => worklist.push(id),
381         None => ()
382     }
383
384     // Seed implemented trait items
385     let mut life_seeder = LifeSeeder {
386         worklist: worklist
387     };
388     krate.visit_all_items(&mut life_seeder);
389
390     return life_seeder.worklist;
391 }
392
393 fn find_live(tcx: &ty::ctxt,
394              access_levels: &privacy::AccessLevels,
395              krate: &hir::Crate)
396              -> Box<HashSet<ast::NodeId>> {
397     let worklist = create_and_seed_worklist(tcx, access_levels, krate);
398     let mut symbol_visitor = MarkSymbolVisitor::new(tcx, worklist);
399     symbol_visitor.mark_live_symbols();
400     symbol_visitor.live_symbols
401 }
402
403 fn get_struct_ctor_id(item: &hir::Item) -> Option<ast::NodeId> {
404     match item.node {
405         hir::ItemStruct(ref struct_def, _) if !struct_def.is_struct() => {
406             Some(struct_def.id())
407         }
408         _ => None
409     }
410 }
411
412 struct DeadVisitor<'a, 'tcx: 'a> {
413     tcx: &'a ty::ctxt<'tcx>,
414     live_symbols: Box<HashSet<ast::NodeId>>,
415 }
416
417 impl<'a, 'tcx> DeadVisitor<'a, 'tcx> {
418     fn should_warn_about_item(&mut self, item: &hir::Item) -> bool {
419         let should_warn = match item.node {
420             hir::ItemStatic(..)
421             | hir::ItemConst(..)
422             | hir::ItemFn(..)
423             | hir::ItemEnum(..)
424             | hir::ItemStruct(..) => true,
425             _ => false
426         };
427         let ctor_id = get_struct_ctor_id(item);
428         should_warn && !self.symbol_is_live(item.id, ctor_id)
429     }
430
431     fn should_warn_about_field(&mut self, node: &hir::StructField_) -> bool {
432         let is_named = node.name.is_some();
433         let field_type = self.tcx.node_id_to_type(node.id);
434         let is_marker_field = match field_type.ty_to_def_id() {
435             Some(def_id) => self.tcx.lang_items.items().iter().any(|item| *item == Some(def_id)),
436             _ => false
437         };
438         is_named
439             && !self.symbol_is_live(node.id, None)
440             && !is_marker_field
441             && !has_allow_dead_code_or_lang_attr(&node.attrs)
442     }
443
444     fn should_warn_about_variant(&mut self, variant: &hir::Variant_) -> bool {
445         !self.symbol_is_live(variant.data.id(), None)
446             && !has_allow_dead_code_or_lang_attr(&variant.attrs)
447     }
448
449     // id := node id of an item's definition.
450     // ctor_id := `Some` if the item is a struct_ctor (tuple struct),
451     //            `None` otherwise.
452     // If the item is a struct_ctor, then either its `id` or
453     // `ctor_id` (unwrapped) is in the live_symbols set. More specifically,
454     // DefMap maps the ExprPath of a struct_ctor to the node referred by
455     // `ctor_id`. On the other hand, in a statement like
456     // `type <ident> <generics> = <ty>;` where <ty> refers to a struct_ctor,
457     // DefMap maps <ty> to `id` instead.
458     fn symbol_is_live(&mut self,
459                       id: ast::NodeId,
460                       ctor_id: Option<ast::NodeId>)
461                       -> bool {
462         if self.live_symbols.contains(&id)
463            || ctor_id.map_or(false,
464                              |ctor| self.live_symbols.contains(&ctor)) {
465             return true;
466         }
467         // If it's a type whose items are live, then it's live, too.
468         // This is done to handle the case where, for example, the static
469         // method of a private type is used, but the type itself is never
470         // called directly.
471         let impl_items = self.tcx.impl_items.borrow();
472         match self.tcx.inherent_impls.borrow().get(&self.tcx.map.local_def_id(id)) {
473             None => (),
474             Some(impl_list) => {
475                 for impl_did in impl_list.iter() {
476                     for item_did in impl_items.get(impl_did).unwrap().iter() {
477                         if let Some(item_node_id) =
478                                 self.tcx.map.as_local_node_id(item_did.def_id()) {
479                             if self.live_symbols.contains(&item_node_id) {
480                                 return true;
481                             }
482                         }
483                     }
484                 }
485             }
486         }
487         false
488     }
489
490     fn warn_dead_code(&mut self,
491                       id: ast::NodeId,
492                       span: codemap::Span,
493                       name: ast::Name,
494                       node_type: &str) {
495         let name = name.as_str();
496         if !name.starts_with("_") {
497             self.tcx
498                 .sess
499                 .add_lint(lint::builtin::DEAD_CODE,
500                           id,
501                           span,
502                           format!("{} is never used: `{}`", node_type, name));
503         }
504     }
505 }
506
507 impl<'a, 'tcx, 'v> Visitor<'v> for DeadVisitor<'a, 'tcx> {
508     /// Walk nested items in place so that we don't report dead-code
509     /// on inner functions when the outer function is already getting
510     /// an error. We could do this also by checking the parents, but
511     /// this is how the code is setup and it seems harmless enough.
512     fn visit_nested_item(&mut self, item: hir::ItemId) {
513         self.visit_item(self.tcx.map.expect_item(item.id))
514     }
515
516     fn visit_item(&mut self, item: &hir::Item) {
517         if self.should_warn_about_item(item) {
518             self.warn_dead_code(
519                 item.id,
520                 item.span,
521                 item.name,
522                 item.node.descriptive_variant()
523             );
524         } else {
525             // Only continue if we didn't warn
526             intravisit::walk_item(self, item);
527         }
528     }
529
530     fn visit_variant(&mut self, variant: &hir::Variant, g: &hir::Generics, id: ast::NodeId) {
531         if self.should_warn_about_variant(&variant.node) {
532             self.warn_dead_code(variant.node.data.id(), variant.span,
533                                 variant.node.name, "variant");
534         } else {
535             intravisit::walk_variant(self, variant, g, id);
536         }
537     }
538
539     fn visit_foreign_item(&mut self, fi: &hir::ForeignItem) {
540         if !self.symbol_is_live(fi.id, None) {
541             self.warn_dead_code(fi.id, fi.span, fi.name, fi.node.descriptive_variant());
542         }
543         intravisit::walk_foreign_item(self, fi);
544     }
545
546     fn visit_struct_field(&mut self, field: &hir::StructField) {
547         if self.should_warn_about_field(&field.node) {
548             self.warn_dead_code(field.node.id, field.span,
549                                 field.node.name.unwrap(), "struct field");
550         }
551
552         intravisit::walk_struct_field(self, field);
553     }
554
555     fn visit_impl_item(&mut self, impl_item: &hir::ImplItem) {
556         match impl_item.node {
557             hir::ImplItemKind::Const(_, ref expr) => {
558                 if !self.symbol_is_live(impl_item.id, None) {
559                     self.warn_dead_code(impl_item.id, impl_item.span,
560                                         impl_item.name, "associated const");
561                 }
562                 intravisit::walk_expr(self, expr)
563             }
564             hir::ImplItemKind::Method(_, ref body) => {
565                 if !self.symbol_is_live(impl_item.id, None) {
566                     self.warn_dead_code(impl_item.id, impl_item.span,
567                                         impl_item.name, "method");
568                 }
569                 intravisit::walk_block(self, body)
570             }
571             hir::ImplItemKind::Type(..) => {}
572         }
573     }
574
575     // Overwrite so that we don't warn the trait item itself.
576     fn visit_trait_item(&mut self, trait_item: &hir::TraitItem) {
577         match trait_item.node {
578             hir::ConstTraitItem(_, Some(ref expr)) => {
579                 intravisit::walk_expr(self, expr)
580             }
581             hir::MethodTraitItem(_, Some(ref body)) => {
582                 intravisit::walk_block(self, body)
583             }
584             hir::ConstTraitItem(_, None) |
585             hir::MethodTraitItem(_, None) |
586             hir::TypeTraitItem(..) => {}
587         }
588     }
589 }
590
591 pub fn check_crate(tcx: &ty::ctxt, access_levels: &privacy::AccessLevels) {
592     let _task = tcx.dep_graph.in_task(DepNode::DeadCheck);
593     let krate = tcx.map.krate();
594     let live_symbols = find_live(tcx, access_levels, krate);
595     let mut visitor = DeadVisitor { tcx: tcx, live_symbols: live_symbols };
596     intravisit::walk_crate(&mut visitor, krate);
597 }