]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/lints.rs
Rollup merge of #66330 - Nadrieril:nonexhaustive-constructor, r=varkor
[rust.git] / src / librustc_mir / lints.rs
1 use rustc_index::bit_set::BitSet;
2 use rustc::hir::def_id::DefId;
3 use rustc::hir::intravisit::FnKind;
4 use rustc::hir::map::blocks::FnLikeNode;
5 use rustc::lint::builtin::UNCONDITIONAL_RECURSION;
6 use rustc::mir::{self, Body, TerminatorKind};
7 use rustc::ty::{self, AssocItem, AssocItemContainer, Instance, TyCtxt};
8 use rustc::ty::subst::InternalSubsts;
9
10 pub fn check(tcx: TyCtxt<'tcx>, body: &Body<'tcx>, def_id: DefId) {
11     let hir_id = tcx.hir().as_local_hir_id(def_id).unwrap();
12
13     if let Some(fn_like_node) = FnLikeNode::from_node(tcx.hir().get(hir_id)) {
14         check_fn_for_unconditional_recursion(tcx, fn_like_node.kind(), body, def_id);
15     }
16 }
17
18 fn check_fn_for_unconditional_recursion(
19     tcx: TyCtxt<'tcx>,
20     fn_kind: FnKind<'_>,
21     body: &Body<'tcx>,
22     def_id: DefId,
23 ) {
24     if let FnKind::Closure(_) = fn_kind {
25         // closures can't recur, so they don't matter.
26         return;
27     }
28
29     //FIXME(#54444) rewrite this lint to use the dataflow framework
30
31     // Walk through this function (say `f`) looking to see if
32     // every possible path references itself, i.e., the function is
33     // called recursively unconditionally. This is done by trying
34     // to find a path from the entry node to the exit node that
35     // *doesn't* call `f` by traversing from the entry while
36     // pretending that calls of `f` are sinks (i.e., ignoring any
37     // exit edges from them).
38     //
39     // NB. this has an edge case with non-returning statements,
40     // like `loop {}` or `panic!()`: control flow never reaches
41     // the exit node through these, so one can have a function
42     // that never actually calls itself but is still picked up by
43     // this lint:
44     //
45     //     fn f(cond: bool) {
46     //         if !cond { panic!() } // could come from `assert!(cond)`
47     //         f(false)
48     //     }
49     //
50     // In general, functions of that form may be able to call
51     // itself a finite number of times and then diverge. The lint
52     // considers this to be an error for two reasons, (a) it is
53     // easier to implement, and (b) it seems rare to actually want
54     // to have behaviour like the above, rather than
55     // e.g., accidentally recursing after an assert.
56
57     let basic_blocks = body.basic_blocks();
58     let mut reachable_without_self_call_queue = vec![mir::START_BLOCK];
59     let mut reached_exit_without_self_call = false;
60     let mut self_call_locations = vec![];
61     let mut visited = BitSet::new_empty(basic_blocks.len());
62
63     let param_env = tcx.param_env(def_id);
64     let trait_substs_count =
65         match tcx.opt_associated_item(def_id) {
66             Some(AssocItem {
67                 container: AssocItemContainer::TraitContainer(trait_def_id),
68                 ..
69             }) => tcx.generics_of(trait_def_id).count(),
70             _ => 0
71         };
72     let caller_substs = &InternalSubsts::identity_for_item(tcx, def_id)[..trait_substs_count];
73
74     while let Some(bb) = reachable_without_self_call_queue.pop() {
75         if !visited.insert(bb) {
76             //already done
77             continue;
78         }
79
80         let block = &basic_blocks[bb];
81
82         if let Some(ref terminator) = block.terminator {
83             match terminator.kind {
84                 TerminatorKind::Call { ref func, .. } => {
85                     let func_ty = func.ty(body, tcx);
86
87                     if let ty::FnDef(fn_def_id, substs) = func_ty.kind {
88                         let (call_fn_id, call_substs) =
89                             if let Some(instance) = Instance::resolve(tcx,
90                                                                         param_env,
91                                                                         fn_def_id,
92                                                                         substs) {
93                                 (instance.def_id(), instance.substs)
94                             } else {
95                                 (fn_def_id, substs)
96                             };
97
98                         let is_self_call =
99                             call_fn_id == def_id &&
100                                 &call_substs[..caller_substs.len()] == caller_substs;
101
102                         if is_self_call {
103                             self_call_locations.push(terminator.source_info);
104
105                             //this is a self call so we shouldn't explore
106                             //further down this path
107                             continue;
108                         }
109                     }
110                 },
111                 TerminatorKind::Abort | TerminatorKind::Return => {
112                     //found a path!
113                     reached_exit_without_self_call = true;
114                     break;
115                 }
116                 _ => {}
117             }
118
119             for successor in terminator.successors() {
120                 reachable_without_self_call_queue.push(*successor);
121             }
122         }
123     }
124
125     // Check the number of self calls because a function that
126     // doesn't return (e.g., calls a `-> !` function or `loop { /*
127     // no break */ }`) shouldn't be linted unless it actually
128     // recurs.
129     if !reached_exit_without_self_call && !self_call_locations.is_empty() {
130         let hir_id = tcx.hir().as_local_hir_id(def_id).unwrap();
131         let sp = tcx.sess.source_map().def_span(tcx.hir().span(hir_id));
132         let mut db = tcx.struct_span_lint_hir(UNCONDITIONAL_RECURSION,
133                                               hir_id,
134                                               sp,
135                                               "function cannot return without recursing");
136         db.span_label(sp, "cannot return without recursing");
137         // offer some help to the programmer.
138         for location in &self_call_locations {
139             db.span_label(location.span, "recursive call site");
140         }
141         db.help("a `loop` may express intention better if this is on purpose");
142         db.emit();
143     }
144 }