]> git.lizzy.rs Git - rust.git/blob - src/librustc/middle/liveness.rs
Auto merge of #54265 - arielb1:civilize-proc-macros, r=alexcrichton
[rust.git] / src / librustc / middle / liveness.rs
1 // Copyright 2012-2014 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 //! A classic liveness analysis based on dataflow over the AST.  Computes,
12 //! for each local variable in a function, whether that variable is live
13 //! at a given point.  Program execution points are identified by their
14 //! id.
15 //!
16 //! # Basic idea
17 //!
18 //! The basic model is that each local variable is assigned an index.  We
19 //! represent sets of local variables using a vector indexed by this
20 //! index.  The value in the vector is either 0, indicating the variable
21 //! is dead, or the id of an expression that uses the variable.
22 //!
23 //! We conceptually walk over the AST in reverse execution order.  If we
24 //! find a use of a variable, we add it to the set of live variables.  If
25 //! we find an assignment to a variable, we remove it from the set of live
26 //! variables.  When we have to merge two flows, we take the union of
27 //! those two flows---if the variable is live on both paths, we simply
28 //! pick one id.  In the event of loops, we continue doing this until a
29 //! fixed point is reached.
30 //!
31 //! ## Checking initialization
32 //!
33 //! At the function entry point, all variables must be dead.  If this is
34 //! not the case, we can report an error using the id found in the set of
35 //! live variables, which identifies a use of the variable which is not
36 //! dominated by an assignment.
37 //!
38 //! ## Checking moves
39 //!
40 //! After each explicit move, the variable must be dead.
41 //!
42 //! ## Computing last uses
43 //!
44 //! Any use of the variable where the variable is dead afterwards is a
45 //! last use.
46 //!
47 //! # Implementation details
48 //!
49 //! The actual implementation contains two (nested) walks over the AST.
50 //! The outer walk has the job of building up the ir_maps instance for the
51 //! enclosing function.  On the way down the tree, it identifies those AST
52 //! nodes and variable IDs that will be needed for the liveness analysis
53 //! and assigns them contiguous IDs.  The liveness id for an AST node is
54 //! called a `live_node` (it's a newtype'd u32) and the id for a variable
55 //! is called a `variable` (another newtype'd u32).
56 //!
57 //! On the way back up the tree, as we are about to exit from a function
58 //! declaration we allocate a `liveness` instance.  Now that we know
59 //! precisely how many nodes and variables we need, we can allocate all
60 //! the various arrays that we will need to precisely the right size.  We then
61 //! perform the actual propagation on the `liveness` instance.
62 //!
63 //! This propagation is encoded in the various `propagate_through_*()`
64 //! methods.  It effectively does a reverse walk of the AST; whenever we
65 //! reach a loop node, we iterate until a fixed point is reached.
66 //!
67 //! ## The `users_*` fields
68 //!
69 //! At each live node `N`, we track three pieces of information for each
70 //! variable `V` (these are in the `users_*` fields):
71 //!
72 //! - `reader`: the `LiveNode` ID of some node which will read the value
73 //!    that `V` holds on entry to `N`.  Formally: a node `M` such
74 //!    that there exists a path `P` from `N` to `M` where `P` does not
75 //!    write `V`.  If the `reader` is `invalid_node()`, then the current
76 //!    value will never be read (the variable is dead, essentially).
77 //!
78 //! - `writer`: the `LiveNode` ID of some node which will write the
79 //!    variable `V` and which is reachable from `N`.  Formally: a node `M`
80 //!    such that there exists a path `P` from `N` to `M` and `M` writes
81 //!    `V`.  If the `writer` is `invalid_node()`, then there is no writer
82 //!    of `V` that follows `N`.
83 //!
84 //! - `used`: a boolean value indicating whether `V` is *used*.  We
85 //!   distinguish a *read* from a *use* in that a *use* is some read that
86 //!   is not just used to generate a new value.  For example, `x += 1` is
87 //!   a read but not a use.  This is used to generate better warnings.
88 //!
89 //! ## Special Variables
90 //!
91 //! We generate various special variables for various, well, special purposes.
92 //! These are described in the `specials` struct:
93 //!
94 //! - `exit_ln`: a live node that is generated to represent every 'exit' from
95 //!   the function, whether it be by explicit return, panic, or other means.
96 //!
97 //! - `fallthrough_ln`: a live node that represents a fallthrough
98 //!
99 //! - `clean_exit_var`: a synthetic variable that is only 'read' from the
100 //!   fallthrough node.  It is only live if the function could converge
101 //!   via means other than an explicit `return` expression. That is, it is
102 //!   only dead if the end of the function's block can never be reached.
103 //!   It is the responsibility of typeck to ensure that there are no
104 //!   `return` expressions in a function declared as diverging.
105
106 use self::LoopKind::*;
107 use self::LiveNodeKind::*;
108 use self::VarKind::*;
109
110 use hir::def::*;
111 use hir::Node;
112 use ty::{self, TyCtxt};
113 use lint;
114 use errors::Applicability;
115 use util::nodemap::{NodeMap, HirIdMap, HirIdSet};
116
117 use std::collections::VecDeque;
118 use std::{fmt, u32};
119 use std::io::prelude::*;
120 use std::io;
121 use std::rc::Rc;
122 use syntax::ast::{self, NodeId};
123 use syntax::ptr::P;
124 use syntax::symbol::keywords;
125 use syntax_pos::Span;
126
127 use hir::{Expr, HirId};
128 use hir;
129 use hir::intravisit::{self, Visitor, FnKind, NestedVisitorMap};
130
131 /// For use with `propagate_through_loop`.
132 enum LoopKind<'a> {
133     /// An endless `loop` loop.
134     LoopLoop,
135     /// A `while` loop, with the given expression as condition.
136     WhileLoop(&'a Expr),
137 }
138
139 #[derive(Copy, Clone, PartialEq)]
140 struct Variable(u32);
141
142 #[derive(Copy, Clone, PartialEq)]
143 struct LiveNode(u32);
144
145 impl Variable {
146     fn get(&self) -> usize { self.0 as usize }
147 }
148
149 impl LiveNode {
150     fn get(&self) -> usize { self.0 as usize }
151 }
152
153 #[derive(Copy, Clone, PartialEq, Debug)]
154 enum LiveNodeKind {
155     FreeVarNode(Span),
156     ExprNode(Span),
157     VarDefNode(Span),
158     ExitNode
159 }
160
161 fn live_node_kind_to_string(lnk: LiveNodeKind, tcx: TyCtxt) -> String {
162     let cm = tcx.sess.source_map();
163     match lnk {
164         FreeVarNode(s) => {
165             format!("Free var node [{}]", cm.span_to_string(s))
166         }
167         ExprNode(s) => {
168             format!("Expr node [{}]", cm.span_to_string(s))
169         }
170         VarDefNode(s) => {
171             format!("Var def node [{}]", cm.span_to_string(s))
172         }
173         ExitNode => "Exit node".to_string(),
174     }
175 }
176
177 impl<'a, 'tcx> Visitor<'tcx> for IrMaps<'a, 'tcx> {
178     fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
179         NestedVisitorMap::OnlyBodies(&self.tcx.hir)
180     }
181
182     fn visit_fn(&mut self, fk: FnKind<'tcx>, fd: &'tcx hir::FnDecl,
183                 b: hir::BodyId, s: Span, id: NodeId) {
184         visit_fn(self, fk, fd, b, s, id);
185     }
186
187     fn visit_local(&mut self, l: &'tcx hir::Local) { visit_local(self, l); }
188     fn visit_expr(&mut self, ex: &'tcx Expr) { visit_expr(self, ex); }
189     fn visit_arm(&mut self, a: &'tcx hir::Arm) { visit_arm(self, a); }
190 }
191
192 pub fn check_crate<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>) {
193     tcx.hir.krate().visit_all_item_likes(&mut IrMaps::new(tcx).as_deep_visitor());
194     tcx.sess.abort_if_errors();
195 }
196
197 impl fmt::Debug for LiveNode {
198     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
199         write!(f, "ln({})", self.get())
200     }
201 }
202
203 impl fmt::Debug for Variable {
204     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
205         write!(f, "v({})", self.get())
206     }
207 }
208
209 // ______________________________________________________________________
210 // Creating ir_maps
211 //
212 // This is the first pass and the one that drives the main
213 // computation.  It walks up and down the IR once.  On the way down,
214 // we count for each function the number of variables as well as
215 // liveness nodes.  A liveness node is basically an expression or
216 // capture clause that does something of interest: either it has
217 // interesting control flow or it uses/defines a local variable.
218 //
219 // On the way back up, at each function node we create liveness sets
220 // (we now know precisely how big to make our various vectors and so
221 // forth) and then do the data-flow propagation to compute the set
222 // of live variables at each program point.
223 //
224 // Finally, we run back over the IR one last time and, using the
225 // computed liveness, check various safety conditions.  For example,
226 // there must be no live nodes at the definition site for a variable
227 // unless it has an initializer.  Similarly, each non-mutable local
228 // variable must not be assigned if there is some successor
229 // assignment.  And so forth.
230
231 impl LiveNode {
232     fn is_valid(&self) -> bool {
233         self.0 != u32::MAX
234     }
235 }
236
237 fn invalid_node() -> LiveNode { LiveNode(u32::MAX) }
238
239 struct CaptureInfo {
240     ln: LiveNode,
241     var_hid: HirId
242 }
243
244 #[derive(Copy, Clone, Debug)]
245 struct LocalInfo {
246     id: HirId,
247     name: ast::Name,
248     is_shorthand: bool,
249 }
250
251 #[derive(Copy, Clone, Debug)]
252 enum VarKind {
253     Arg(HirId, ast::Name),
254     Local(LocalInfo),
255     CleanExit
256 }
257
258 struct IrMaps<'a, 'tcx: 'a> {
259     tcx: TyCtxt<'a, 'tcx, 'tcx>,
260
261     num_live_nodes: usize,
262     num_vars: usize,
263     live_node_map: HirIdMap<LiveNode>,
264     variable_map: HirIdMap<Variable>,
265     capture_info_map: NodeMap<Rc<Vec<CaptureInfo>>>,
266     var_kinds: Vec<VarKind>,
267     lnks: Vec<LiveNodeKind>,
268 }
269
270 impl<'a, 'tcx> IrMaps<'a, 'tcx> {
271     fn new(tcx: TyCtxt<'a, 'tcx, 'tcx>) -> IrMaps<'a, 'tcx> {
272         IrMaps {
273             tcx,
274             num_live_nodes: 0,
275             num_vars: 0,
276             live_node_map: HirIdMap(),
277             variable_map: HirIdMap(),
278             capture_info_map: NodeMap(),
279             var_kinds: Vec::new(),
280             lnks: Vec::new(),
281         }
282     }
283
284     fn add_live_node(&mut self, lnk: LiveNodeKind) -> LiveNode {
285         let ln = LiveNode(self.num_live_nodes as u32);
286         self.lnks.push(lnk);
287         self.num_live_nodes += 1;
288
289         debug!("{:?} is of kind {}", ln,
290                live_node_kind_to_string(lnk, self.tcx));
291
292         ln
293     }
294
295     fn add_live_node_for_node(&mut self, hir_id: HirId, lnk: LiveNodeKind) {
296         let ln = self.add_live_node(lnk);
297         self.live_node_map.insert(hir_id, ln);
298
299         debug!("{:?} is node {:?}", ln, hir_id);
300     }
301
302     fn add_variable(&mut self, vk: VarKind) -> Variable {
303         let v = Variable(self.num_vars as u32);
304         self.var_kinds.push(vk);
305         self.num_vars += 1;
306
307         match vk {
308             Local(LocalInfo { id: node_id, .. }) | Arg(node_id, _) => {
309                 self.variable_map.insert(node_id, v);
310             },
311             CleanExit => {}
312         }
313
314         debug!("{:?} is {:?}", v, vk);
315
316         v
317     }
318
319     fn variable(&self, hir_id: HirId, span: Span) -> Variable {
320         match self.variable_map.get(&hir_id) {
321             Some(&var) => var,
322             None => {
323                 span_bug!(span, "no variable registered for id {:?}", hir_id);
324             }
325         }
326     }
327
328     fn variable_name(&self, var: Variable) -> String {
329         match self.var_kinds[var.get()] {
330             Local(LocalInfo { name, .. }) | Arg(_, name) => {
331                 name.to_string()
332             },
333             CleanExit => "<clean-exit>".to_string()
334         }
335     }
336
337     fn variable_is_shorthand(&self, var: Variable) -> bool {
338         match self.var_kinds[var.get()] {
339             Local(LocalInfo { is_shorthand, .. }) => is_shorthand,
340             Arg(..) | CleanExit => false
341         }
342     }
343
344     fn set_captures(&mut self, node_id: NodeId, cs: Vec<CaptureInfo>) {
345         self.capture_info_map.insert(node_id, Rc::new(cs));
346     }
347
348     fn lnk(&self, ln: LiveNode) -> LiveNodeKind {
349         self.lnks[ln.get()]
350     }
351 }
352
353 fn visit_fn<'a, 'tcx: 'a>(ir: &mut IrMaps<'a, 'tcx>,
354                           fk: FnKind<'tcx>,
355                           decl: &'tcx hir::FnDecl,
356                           body_id: hir::BodyId,
357                           sp: Span,
358                           id: ast::NodeId) {
359     debug!("visit_fn");
360
361     // swap in a new set of IR maps for this function body:
362     let mut fn_maps = IrMaps::new(ir.tcx);
363
364     // Don't run unused pass for #[derive()]
365     if let FnKind::Method(..) = fk {
366         let parent = ir.tcx.hir.get_parent(id);
367         if let Some(Node::Item(i)) = ir.tcx.hir.find(parent) {
368             if i.attrs.iter().any(|a| a.check_name("automatically_derived")) {
369                 return;
370             }
371         }
372     }
373
374     debug!("creating fn_maps: {:?}", &fn_maps as *const IrMaps);
375
376     let body = ir.tcx.hir.body(body_id);
377
378     for arg in &body.arguments {
379         arg.pat.each_binding(|_bm, hir_id, _x, ident| {
380             debug!("adding argument {:?}", hir_id);
381             fn_maps.add_variable(Arg(hir_id, ident.name));
382         })
383     };
384
385     // gather up the various local variables, significant expressions,
386     // and so forth:
387     intravisit::walk_fn(&mut fn_maps, fk, decl, body_id, sp, id);
388
389     // compute liveness
390     let mut lsets = Liveness::new(&mut fn_maps, body_id);
391     let entry_ln = lsets.compute(&body.value);
392
393     // check for various error conditions
394     lsets.visit_body(body);
395     lsets.warn_about_unused_args(body, entry_ln);
396 }
397
398 fn add_from_pat<'a, 'tcx>(ir: &mut IrMaps<'a, 'tcx>, pat: &P<hir::Pat>) {
399     // For struct patterns, take note of which fields used shorthand
400     // (`x` rather than `x: x`).
401     let mut shorthand_field_ids = HirIdSet();
402     let mut pats = VecDeque::new();
403     pats.push_back(pat);
404     while let Some(pat) = pats.pop_front() {
405         use hir::PatKind::*;
406         match pat.node {
407             Binding(_, _, _, ref inner_pat) => {
408                 pats.extend(inner_pat.iter());
409             }
410             Struct(_, ref fields, _) => {
411                 for field in fields {
412                     if field.node.is_shorthand {
413                         shorthand_field_ids.insert(field.node.pat.hir_id);
414                     }
415                 }
416             }
417             Ref(ref inner_pat, _) |
418             Box(ref inner_pat) => {
419                 pats.push_back(inner_pat);
420             }
421             TupleStruct(_, ref inner_pats, _) |
422             Tuple(ref inner_pats, _) => {
423                 pats.extend(inner_pats.iter());
424             }
425             Slice(ref pre_pats, ref inner_pat, ref post_pats) => {
426                 pats.extend(pre_pats.iter());
427                 pats.extend(inner_pat.iter());
428                 pats.extend(post_pats.iter());
429             }
430             _ => {}
431         }
432     }
433
434     pat.each_binding(|_bm, hir_id, _sp, ident| {
435         ir.add_live_node_for_node(hir_id, VarDefNode(ident.span));
436         ir.add_variable(Local(LocalInfo {
437             id: hir_id,
438             name: ident.name,
439             is_shorthand: shorthand_field_ids.contains(&hir_id)
440         }));
441     });
442 }
443
444 fn visit_local<'a, 'tcx>(ir: &mut IrMaps<'a, 'tcx>, local: &'tcx hir::Local) {
445     add_from_pat(ir, &local.pat);
446     intravisit::walk_local(ir, local);
447 }
448
449 fn visit_arm<'a, 'tcx>(ir: &mut IrMaps<'a, 'tcx>, arm: &'tcx hir::Arm) {
450     for pat in &arm.pats {
451         add_from_pat(ir, pat);
452     }
453     intravisit::walk_arm(ir, arm);
454 }
455
456 fn visit_expr<'a, 'tcx>(ir: &mut IrMaps<'a, 'tcx>, expr: &'tcx Expr) {
457     match expr.node {
458       // live nodes required for uses or definitions of variables:
459       hir::ExprKind::Path(hir::QPath::Resolved(_, ref path)) => {
460         debug!("expr {}: path that leads to {:?}", expr.id, path.def);
461         if let Def::Local(..) = path.def {
462             ir.add_live_node_for_node(expr.hir_id, ExprNode(expr.span));
463         }
464         intravisit::walk_expr(ir, expr);
465       }
466       hir::ExprKind::Closure(..) => {
467         // Interesting control flow (for loops can contain labeled
468         // breaks or continues)
469         ir.add_live_node_for_node(expr.hir_id, ExprNode(expr.span));
470
471         // Make a live_node for each captured variable, with the span
472         // being the location that the variable is used.  This results
473         // in better error messages than just pointing at the closure
474         // construction site.
475         let mut call_caps = Vec::new();
476         ir.tcx.with_freevars(expr.id, |freevars| {
477             for fv in freevars {
478                 if let Def::Local(rv) = fv.def {
479                     let fv_ln = ir.add_live_node(FreeVarNode(fv.span));
480                     let var_hid = ir.tcx.hir.node_to_hir_id(rv);
481                     call_caps.push(CaptureInfo { ln: fv_ln, var_hid });
482                 }
483             }
484         });
485         ir.set_captures(expr.id, call_caps);
486
487         intravisit::walk_expr(ir, expr);
488       }
489
490       // live nodes required for interesting control flow:
491       hir::ExprKind::If(..) |
492       hir::ExprKind::Match(..) |
493       hir::ExprKind::While(..) |
494       hir::ExprKind::Loop(..) => {
495         ir.add_live_node_for_node(expr.hir_id, ExprNode(expr.span));
496         intravisit::walk_expr(ir, expr);
497       }
498       hir::ExprKind::Binary(op, ..) if op.node.is_lazy() => {
499         ir.add_live_node_for_node(expr.hir_id, ExprNode(expr.span));
500         intravisit::walk_expr(ir, expr);
501       }
502
503       // otherwise, live nodes are not required:
504       hir::ExprKind::Index(..) |
505       hir::ExprKind::Field(..) |
506       hir::ExprKind::Array(..) |
507       hir::ExprKind::Call(..) |
508       hir::ExprKind::MethodCall(..) |
509       hir::ExprKind::Tup(..) |
510       hir::ExprKind::Binary(..) |
511       hir::ExprKind::AddrOf(..) |
512       hir::ExprKind::Cast(..) |
513       hir::ExprKind::Unary(..) |
514       hir::ExprKind::Break(..) |
515       hir::ExprKind::Continue(_) |
516       hir::ExprKind::Lit(_) |
517       hir::ExprKind::Ret(..) |
518       hir::ExprKind::Block(..) |
519       hir::ExprKind::Assign(..) |
520       hir::ExprKind::AssignOp(..) |
521       hir::ExprKind::Struct(..) |
522       hir::ExprKind::Repeat(..) |
523       hir::ExprKind::InlineAsm(..) |
524       hir::ExprKind::Box(..) |
525       hir::ExprKind::Yield(..) |
526       hir::ExprKind::Type(..) |
527       hir::ExprKind::Path(hir::QPath::TypeRelative(..)) => {
528           intravisit::walk_expr(ir, expr);
529       }
530     }
531 }
532
533 // ______________________________________________________________________
534 // Computing liveness sets
535 //
536 // Actually we compute just a bit more than just liveness, but we use
537 // the same basic propagation framework in all cases.
538
539 #[derive(Copy, Clone)]
540 struct Specials {
541     exit_ln: LiveNode,
542     fallthrough_ln: LiveNode,
543     clean_exit_var: Variable
544 }
545
546 const ACC_READ: u32 = 1;
547 const ACC_WRITE: u32 = 2;
548 const ACC_USE: u32 = 4;
549
550 struct Liveness<'a, 'tcx: 'a> {
551     ir: &'a mut IrMaps<'a, 'tcx>,
552     tables: &'a ty::TypeckTables<'tcx>,
553     s: Specials,
554     successors: Vec<LiveNode>,
555
556     // We used to have a single `users: Vec<Users>` field here, where `Users`
557     // had `reader`, `writer` and `used` fields. But the number of users can
558     // get very large, and it's more compact to store the data in three
559     // separate `Vec`s so that no space is wasted for padding.
560     users_reader: Vec<LiveNode>,
561     users_writer: Vec<LiveNode>,
562     users_used: Vec<bool>,
563
564     // mappings from loop node ID to LiveNode
565     // ("break" label should map to loop node ID,
566     // it probably doesn't now)
567     break_ln: NodeMap<LiveNode>,
568     cont_ln: NodeMap<LiveNode>,
569 }
570
571 impl<'a, 'tcx> Liveness<'a, 'tcx> {
572     fn new(ir: &'a mut IrMaps<'a, 'tcx>, body: hir::BodyId) -> Liveness<'a, 'tcx> {
573         // Special nodes and variables:
574         // - exit_ln represents the end of the fn, either by return or panic
575         // - implicit_ret_var is a pseudo-variable that represents
576         //   an implicit return
577         let specials = Specials {
578             exit_ln: ir.add_live_node(ExitNode),
579             fallthrough_ln: ir.add_live_node(ExitNode),
580             clean_exit_var: ir.add_variable(CleanExit)
581         };
582
583         let tables = ir.tcx.body_tables(body);
584
585         let num_live_nodes = ir.num_live_nodes;
586         let num_vars = ir.num_vars;
587         let num_users = num_live_nodes * num_vars;
588
589         Liveness {
590             ir,
591             tables,
592             s: specials,
593             successors: vec![invalid_node(); num_live_nodes],
594             users_reader: vec![invalid_node(); num_users],
595             users_writer: vec![invalid_node(); num_users],
596             users_used: vec![false; num_users],
597             break_ln: NodeMap(),
598             cont_ln: NodeMap(),
599         }
600     }
601
602     fn live_node(&self, hir_id: HirId, span: Span) -> LiveNode {
603         match self.ir.live_node_map.get(&hir_id) {
604           Some(&ln) => ln,
605           None => {
606             // This must be a mismatch between the ir_map construction
607             // above and the propagation code below; the two sets of
608             // code have to agree about which AST nodes are worth
609             // creating liveness nodes for.
610             span_bug!(
611                 span,
612                 "no live node registered for node {:?}",
613                 hir_id);
614           }
615         }
616     }
617
618     fn variable(&self, hir_id: HirId, span: Span) -> Variable {
619         self.ir.variable(hir_id, span)
620     }
621
622     fn pat_bindings<F>(&mut self, pat: &hir::Pat, mut f: F) where
623         F: FnMut(&mut Liveness<'a, 'tcx>, LiveNode, Variable, Span, HirId),
624     {
625         pat.each_binding(|_bm, hir_id, sp, n| {
626             let ln = self.live_node(hir_id, sp);
627             let var = self.variable(hir_id, n.span);
628             f(self, ln, var, n.span, hir_id);
629         })
630     }
631
632     fn arm_pats_bindings<F>(&mut self, pat: Option<&hir::Pat>, f: F) where
633         F: FnMut(&mut Liveness<'a, 'tcx>, LiveNode, Variable, Span, HirId),
634     {
635         if let Some(pat) = pat {
636             self.pat_bindings(pat, f);
637         }
638     }
639
640     fn define_bindings_in_pat(&mut self, pat: &hir::Pat, succ: LiveNode)
641                               -> LiveNode {
642         self.define_bindings_in_arm_pats(Some(pat), succ)
643     }
644
645     fn define_bindings_in_arm_pats(&mut self, pat: Option<&hir::Pat>, succ: LiveNode)
646                                    -> LiveNode {
647         let mut succ = succ;
648         self.arm_pats_bindings(pat, |this, ln, var, _sp, _id| {
649             this.init_from_succ(ln, succ);
650             this.define(ln, var);
651             succ = ln;
652         });
653         succ
654     }
655
656     fn idx(&self, ln: LiveNode, var: Variable) -> usize {
657         ln.get() * self.ir.num_vars + var.get()
658     }
659
660     fn live_on_entry(&self, ln: LiveNode, var: Variable)
661                       -> Option<LiveNodeKind> {
662         assert!(ln.is_valid());
663         let reader = self.users_reader[self.idx(ln, var)];
664         if reader.is_valid() {Some(self.ir.lnk(reader))} else {None}
665     }
666
667     /*
668     Is this variable live on entry to any of its successor nodes?
669     */
670     fn live_on_exit(&self, ln: LiveNode, var: Variable)
671                     -> Option<LiveNodeKind> {
672         let successor = self.successors[ln.get()];
673         self.live_on_entry(successor, var)
674     }
675
676     fn used_on_entry(&self, ln: LiveNode, var: Variable) -> bool {
677         assert!(ln.is_valid());
678         self.users_used[self.idx(ln, var)]
679     }
680
681     fn assigned_on_entry(&self, ln: LiveNode, var: Variable)
682                          -> Option<LiveNodeKind> {
683         assert!(ln.is_valid());
684         let writer = self.users_writer[self.idx(ln, var)];
685         if writer.is_valid() {Some(self.ir.lnk(writer))} else {None}
686     }
687
688     fn assigned_on_exit(&self, ln: LiveNode, var: Variable)
689                         -> Option<LiveNodeKind> {
690         let successor = self.successors[ln.get()];
691         self.assigned_on_entry(successor, var)
692     }
693
694     fn indices2<F>(&mut self, ln: LiveNode, succ_ln: LiveNode, mut op: F) where
695         F: FnMut(&mut Liveness<'a, 'tcx>, usize, usize),
696     {
697         let node_base_idx = self.idx(ln, Variable(0));
698         let succ_base_idx = self.idx(succ_ln, Variable(0));
699         for var_idx in 0..self.ir.num_vars {
700             op(self, node_base_idx + var_idx, succ_base_idx + var_idx);
701         }
702     }
703
704     fn write_vars<F>(&self,
705                      wr: &mut dyn Write,
706                      ln: LiveNode,
707                      mut test: F)
708                      -> io::Result<()> where
709         F: FnMut(usize) -> LiveNode,
710     {
711         let node_base_idx = self.idx(ln, Variable(0));
712         for var_idx in 0..self.ir.num_vars {
713             let idx = node_base_idx + var_idx;
714             if test(idx).is_valid() {
715                 write!(wr, " {:?}", Variable(var_idx as u32))?;
716             }
717         }
718         Ok(())
719     }
720
721
722     #[allow(unused_must_use)]
723     fn ln_str(&self, ln: LiveNode) -> String {
724         let mut wr = Vec::new();
725         {
726             let wr = &mut wr as &mut dyn Write;
727             write!(wr, "[ln({:?}) of kind {:?} reads", ln.get(), self.ir.lnk(ln));
728             self.write_vars(wr, ln, |idx| self.users_reader[idx]);
729             write!(wr, "  writes");
730             self.write_vars(wr, ln, |idx| self.users_writer[idx]);
731             write!(wr, "  precedes {:?}]", self.successors[ln.get()]);
732         }
733         String::from_utf8(wr).unwrap()
734     }
735
736     fn init_empty(&mut self, ln: LiveNode, succ_ln: LiveNode) {
737         self.successors[ln.get()] = succ_ln;
738
739         // It is not necessary to initialize the
740         // values to empty because this is the value
741         // they have when they are created, and the sets
742         // only grow during iterations.
743         //
744         // self.indices(ln) { |idx|
745         //     self.users_reader[idx] = invalid_node();
746         //     self.users_writer[idx] = invalid_node();
747         //     self.users_used[idx] = false;
748         // }
749     }
750
751     fn init_from_succ(&mut self, ln: LiveNode, succ_ln: LiveNode) {
752         // more efficient version of init_empty() / merge_from_succ()
753         self.successors[ln.get()] = succ_ln;
754
755         self.indices2(ln, succ_ln, |this, idx, succ_idx| {
756             this.users_reader[idx] = this.users_reader[succ_idx];
757             this.users_writer[idx] = this.users_writer[succ_idx];
758             this.users_used[idx] = this.users_used[succ_idx];
759         });
760         debug!("init_from_succ(ln={}, succ={})",
761                self.ln_str(ln), self.ln_str(succ_ln));
762     }
763
764     fn merge_from_succ(&mut self,
765                        ln: LiveNode,
766                        succ_ln: LiveNode,
767                        first_merge: bool)
768                        -> bool {
769         if ln == succ_ln { return false; }
770
771         let mut changed = false;
772         self.indices2(ln, succ_ln, |this, idx, succ_idx| {
773             changed |= copy_if_invalid(this.users_reader[succ_idx], &mut this.users_reader[idx]);
774             changed |= copy_if_invalid(this.users_writer[succ_idx], &mut this.users_writer[idx]);
775             if this.users_used[succ_idx] && !this.users_used[idx] {
776                 this.users_used[idx] = true;
777                 changed = true;
778             }
779         });
780
781         debug!("merge_from_succ(ln={:?}, succ={}, first_merge={}, changed={})",
782                ln, self.ln_str(succ_ln), first_merge, changed);
783         return changed;
784
785         fn copy_if_invalid(src: LiveNode, dst: &mut LiveNode) -> bool {
786             if src.is_valid() && !dst.is_valid() {
787                 *dst = src;
788                 true
789             } else {
790                 false
791             }
792         }
793     }
794
795     // Indicates that a local variable was *defined*; we know that no
796     // uses of the variable can precede the definition (resolve checks
797     // this) so we just clear out all the data.
798     fn define(&mut self, writer: LiveNode, var: Variable) {
799         let idx = self.idx(writer, var);
800         self.users_reader[idx] = invalid_node();
801         self.users_writer[idx] = invalid_node();
802
803         debug!("{:?} defines {:?} (idx={}): {}", writer, var,
804                idx, self.ln_str(writer));
805     }
806
807     // Either read, write, or both depending on the acc bitset
808     fn acc(&mut self, ln: LiveNode, var: Variable, acc: u32) {
809         debug!("{:?} accesses[{:x}] {:?}: {}",
810                ln, acc, var, self.ln_str(ln));
811
812         let idx = self.idx(ln, var);
813
814         if (acc & ACC_WRITE) != 0 {
815             self.users_reader[idx] = invalid_node();
816             self.users_writer[idx] = ln;
817         }
818
819         // Important: if we both read/write, must do read second
820         // or else the write will override.
821         if (acc & ACC_READ) != 0 {
822             self.users_reader[idx] = ln;
823         }
824
825         if (acc & ACC_USE) != 0 {
826             self.users_used[idx] = true;
827         }
828     }
829
830     // _______________________________________________________________________
831
832     fn compute(&mut self, body: &hir::Expr) -> LiveNode {
833         // if there is a `break` or `again` at the top level, then it's
834         // effectively a return---this only occurs in `for` loops,
835         // where the body is really a closure.
836
837         debug!("compute: using id for body, {}", self.ir.tcx.hir.node_to_pretty_string(body.id));
838
839         let exit_ln = self.s.exit_ln;
840
841         self.break_ln.insert(body.id, exit_ln);
842         self.cont_ln.insert(body.id, exit_ln);
843
844         // the fallthrough exit is only for those cases where we do not
845         // explicitly return:
846         let s = self.s;
847         self.init_from_succ(s.fallthrough_ln, s.exit_ln);
848         self.acc(s.fallthrough_ln, s.clean_exit_var, ACC_READ);
849
850         let entry_ln = self.propagate_through_expr(body, s.fallthrough_ln);
851
852         // hack to skip the loop unless debug! is enabled:
853         debug!("^^ liveness computation results for body {} (entry={:?})",
854                {
855                    for ln_idx in 0..self.ir.num_live_nodes {
856                        debug!("{:?}", self.ln_str(LiveNode(ln_idx as u32)));
857                    }
858                    body.id
859                },
860                entry_ln);
861
862         entry_ln
863     }
864
865     fn propagate_through_block(&mut self, blk: &hir::Block, succ: LiveNode)
866                                -> LiveNode {
867         if blk.targeted_by_break {
868             self.break_ln.insert(blk.id, succ);
869         }
870         let succ = self.propagate_through_opt_expr(blk.expr.as_ref().map(|e| &**e), succ);
871         blk.stmts.iter().rev().fold(succ, |succ, stmt| {
872             self.propagate_through_stmt(stmt, succ)
873         })
874     }
875
876     fn propagate_through_stmt(&mut self, stmt: &hir::Stmt, succ: LiveNode)
877                               -> LiveNode {
878         match stmt.node {
879             hir::StmtKind::Decl(ref decl, _) => {
880                 self.propagate_through_decl(&decl, succ)
881             }
882
883             hir::StmtKind::Expr(ref expr, _) | hir::StmtKind::Semi(ref expr, _) => {
884                 self.propagate_through_expr(&expr, succ)
885             }
886         }
887     }
888
889     fn propagate_through_decl(&mut self, decl: &hir::Decl, succ: LiveNode)
890                               -> LiveNode {
891         match decl.node {
892             hir::DeclKind::Local(ref local) => {
893                 self.propagate_through_local(&local, succ)
894             }
895             hir::DeclKind::Item(_) => succ,
896         }
897     }
898
899     fn propagate_through_local(&mut self, local: &hir::Local, succ: LiveNode)
900                                -> LiveNode {
901         // Note: we mark the variable as defined regardless of whether
902         // there is an initializer.  Initially I had thought to only mark
903         // the live variable as defined if it was initialized, and then we
904         // could check for uninit variables just by scanning what is live
905         // at the start of the function. But that doesn't work so well for
906         // immutable variables defined in a loop:
907         //     loop { let x; x = 5; }
908         // because the "assignment" loops back around and generates an error.
909         //
910         // So now we just check that variables defined w/o an
911         // initializer are not live at the point of their
912         // initialization, which is mildly more complex than checking
913         // once at the func header but otherwise equivalent.
914
915         let succ = self.propagate_through_opt_expr(local.init.as_ref().map(|e| &**e), succ);
916         self.define_bindings_in_pat(&local.pat, succ)
917     }
918
919     fn propagate_through_exprs(&mut self, exprs: &[Expr], succ: LiveNode)
920                                -> LiveNode {
921         exprs.iter().rev().fold(succ, |succ, expr| {
922             self.propagate_through_expr(&expr, succ)
923         })
924     }
925
926     fn propagate_through_opt_expr(&mut self,
927                                   opt_expr: Option<&Expr>,
928                                   succ: LiveNode)
929                                   -> LiveNode {
930         opt_expr.map_or(succ, |expr| self.propagate_through_expr(expr, succ))
931     }
932
933     fn propagate_through_expr(&mut self, expr: &Expr, succ: LiveNode)
934                               -> LiveNode {
935         debug!("propagate_through_expr: {}", self.ir.tcx.hir.node_to_pretty_string(expr.id));
936
937         match expr.node {
938           // Interesting cases with control flow or which gen/kill
939           hir::ExprKind::Path(hir::QPath::Resolved(_, ref path)) => {
940               self.access_path(expr.hir_id, path, succ, ACC_READ | ACC_USE)
941           }
942
943           hir::ExprKind::Field(ref e, _) => {
944               self.propagate_through_expr(&e, succ)
945           }
946
947           hir::ExprKind::Closure(.., blk_id, _, _) => {
948               debug!("{} is an ExprKind::Closure", self.ir.tcx.hir.node_to_pretty_string(expr.id));
949
950               // The next-node for a break is the successor of the entire
951               // loop. The next-node for a continue is the top of this loop.
952               let node = self.live_node(expr.hir_id, expr.span);
953
954               let break_ln = succ;
955               let cont_ln = node;
956               self.break_ln.insert(blk_id.node_id, break_ln);
957               self.cont_ln.insert(blk_id.node_id, cont_ln);
958
959               // the construction of a closure itself is not important,
960               // but we have to consider the closed over variables.
961               let caps = match self.ir.capture_info_map.get(&expr.id) {
962                   Some(caps) => caps.clone(),
963                   None => {
964                       span_bug!(expr.span, "no registered caps");
965                   }
966               };
967               caps.iter().rev().fold(succ, |succ, cap| {
968                   self.init_from_succ(cap.ln, succ);
969                   let var = self.variable(cap.var_hid, expr.span);
970                   self.acc(cap.ln, var, ACC_READ | ACC_USE);
971                   cap.ln
972               })
973           }
974
975           hir::ExprKind::If(ref cond, ref then, ref els) => {
976             //
977             //     (cond)
978             //       |
979             //       v
980             //     (expr)
981             //     /   \
982             //    |     |
983             //    v     v
984             //  (then)(els)
985             //    |     |
986             //    v     v
987             //   (  succ  )
988             //
989             let else_ln = self.propagate_through_opt_expr(els.as_ref().map(|e| &**e), succ);
990             let then_ln = self.propagate_through_expr(&then, succ);
991             let ln = self.live_node(expr.hir_id, expr.span);
992             self.init_from_succ(ln, else_ln);
993             self.merge_from_succ(ln, then_ln, false);
994             self.propagate_through_expr(&cond, ln)
995           }
996
997           hir::ExprKind::While(ref cond, ref blk, _) => {
998             self.propagate_through_loop(expr, WhileLoop(&cond), &blk, succ)
999           }
1000
1001           // Note that labels have been resolved, so we don't need to look
1002           // at the label ident
1003           hir::ExprKind::Loop(ref blk, _, _) => {
1004             self.propagate_through_loop(expr, LoopLoop, &blk, succ)
1005           }
1006
1007           hir::ExprKind::Match(ref e, ref arms, _) => {
1008             //
1009             //      (e)
1010             //       |
1011             //       v
1012             //     (expr)
1013             //     / | \
1014             //    |  |  |
1015             //    v  v  v
1016             //   (..arms..)
1017             //    |  |  |
1018             //    v  v  v
1019             //   (  succ  )
1020             //
1021             //
1022             let ln = self.live_node(expr.hir_id, expr.span);
1023             self.init_empty(ln, succ);
1024             let mut first_merge = true;
1025             for arm in arms {
1026                 let body_succ =
1027                     self.propagate_through_expr(&arm.body, succ);
1028                 let guard_succ =
1029                     self.propagate_through_opt_expr(
1030                         arm.guard.as_ref().map(|g|
1031                             match g {
1032                                 hir::Guard::If(e) => &**e,
1033                             }),
1034                         body_succ);
1035                 // only consider the first pattern; any later patterns must have
1036                 // the same bindings, and we also consider the first pattern to be
1037                 // the "authoritative" set of ids
1038                 let arm_succ =
1039                     self.define_bindings_in_arm_pats(arm.pats.first().map(|p| &**p),
1040                                                      guard_succ);
1041                 self.merge_from_succ(ln, arm_succ, first_merge);
1042                 first_merge = false;
1043             };
1044             self.propagate_through_expr(&e, ln)
1045           }
1046
1047           hir::ExprKind::Ret(ref o_e) => {
1048             // ignore succ and subst exit_ln:
1049             let exit_ln = self.s.exit_ln;
1050             self.propagate_through_opt_expr(o_e.as_ref().map(|e| &**e), exit_ln)
1051           }
1052
1053           hir::ExprKind::Break(label, ref opt_expr) => {
1054               // Find which label this break jumps to
1055               let target = match label.target_id {
1056                     Ok(node_id) => self.break_ln.get(&node_id),
1057                     Err(err) => span_bug!(expr.span, "loop scope error: {}", err),
1058               }.map(|x| *x);
1059
1060               // Now that we know the label we're going to,
1061               // look it up in the break loop nodes table
1062
1063               match target {
1064                   Some(b) => self.propagate_through_opt_expr(opt_expr.as_ref().map(|e| &**e), b),
1065                   None => span_bug!(expr.span, "break to unknown label")
1066               }
1067           }
1068
1069           hir::ExprKind::Continue(label) => {
1070               // Find which label this expr continues to
1071               let sc = match label.target_id {
1072                     Ok(node_id) => node_id,
1073                     Err(err) => span_bug!(expr.span, "loop scope error: {}", err),
1074               };
1075
1076               // Now that we know the label we're going to,
1077               // look it up in the continue loop nodes table
1078
1079               match self.cont_ln.get(&sc) {
1080                   Some(&b) => b,
1081                   None => span_bug!(expr.span, "continue to unknown label")
1082               }
1083           }
1084
1085           hir::ExprKind::Assign(ref l, ref r) => {
1086             // see comment on places in
1087             // propagate_through_place_components()
1088             let succ = self.write_place(&l, succ, ACC_WRITE);
1089             let succ = self.propagate_through_place_components(&l, succ);
1090             self.propagate_through_expr(&r, succ)
1091           }
1092
1093           hir::ExprKind::AssignOp(_, ref l, ref r) => {
1094             // an overloaded assign op is like a method call
1095             if self.tables.is_method_call(expr) {
1096                 let succ = self.propagate_through_expr(&l, succ);
1097                 self.propagate_through_expr(&r, succ)
1098             } else {
1099                 // see comment on places in
1100                 // propagate_through_place_components()
1101                 let succ = self.write_place(&l, succ, ACC_WRITE|ACC_READ);
1102                 let succ = self.propagate_through_expr(&r, succ);
1103                 self.propagate_through_place_components(&l, succ)
1104             }
1105           }
1106
1107           // Uninteresting cases: just propagate in rev exec order
1108
1109           hir::ExprKind::Array(ref exprs) => {
1110             self.propagate_through_exprs(exprs, succ)
1111           }
1112
1113           hir::ExprKind::Struct(_, ref fields, ref with_expr) => {
1114             let succ = self.propagate_through_opt_expr(with_expr.as_ref().map(|e| &**e), succ);
1115             fields.iter().rev().fold(succ, |succ, field| {
1116                 self.propagate_through_expr(&field.expr, succ)
1117             })
1118           }
1119
1120           hir::ExprKind::Call(ref f, ref args) => {
1121             // FIXME(canndrew): This is_never should really be an is_uninhabited
1122             let succ = if self.tables.expr_ty(expr).is_never() {
1123                 self.s.exit_ln
1124             } else {
1125                 succ
1126             };
1127             let succ = self.propagate_through_exprs(args, succ);
1128             self.propagate_through_expr(&f, succ)
1129           }
1130
1131           hir::ExprKind::MethodCall(.., ref args) => {
1132             // FIXME(canndrew): This is_never should really be an is_uninhabited
1133             let succ = if self.tables.expr_ty(expr).is_never() {
1134                 self.s.exit_ln
1135             } else {
1136                 succ
1137             };
1138             self.propagate_through_exprs(args, succ)
1139           }
1140
1141           hir::ExprKind::Tup(ref exprs) => {
1142             self.propagate_through_exprs(exprs, succ)
1143           }
1144
1145           hir::ExprKind::Binary(op, ref l, ref r) if op.node.is_lazy() => {
1146             let r_succ = self.propagate_through_expr(&r, succ);
1147
1148             let ln = self.live_node(expr.hir_id, expr.span);
1149             self.init_from_succ(ln, succ);
1150             self.merge_from_succ(ln, r_succ, false);
1151
1152             self.propagate_through_expr(&l, ln)
1153           }
1154
1155           hir::ExprKind::Index(ref l, ref r) |
1156           hir::ExprKind::Binary(_, ref l, ref r) => {
1157             let r_succ = self.propagate_through_expr(&r, succ);
1158             self.propagate_through_expr(&l, r_succ)
1159           }
1160
1161           hir::ExprKind::Box(ref e) |
1162           hir::ExprKind::AddrOf(_, ref e) |
1163           hir::ExprKind::Cast(ref e, _) |
1164           hir::ExprKind::Type(ref e, _) |
1165           hir::ExprKind::Unary(_, ref e) |
1166           hir::ExprKind::Yield(ref e) |
1167           hir::ExprKind::Repeat(ref e, _) => {
1168             self.propagate_through_expr(&e, succ)
1169           }
1170
1171           hir::ExprKind::InlineAsm(ref ia, ref outputs, ref inputs) => {
1172             let succ = ia.outputs.iter().zip(outputs).rev().fold(succ, |succ, (o, output)| {
1173                 // see comment on places
1174                 // in propagate_through_place_components()
1175                 if o.is_indirect {
1176                     self.propagate_through_expr(output, succ)
1177                 } else {
1178                     let acc = if o.is_rw { ACC_WRITE|ACC_READ } else { ACC_WRITE };
1179                     let succ = self.write_place(output, succ, acc);
1180                     self.propagate_through_place_components(output, succ)
1181                 }
1182             });
1183
1184             // Inputs are executed first. Propagate last because of rev order
1185             self.propagate_through_exprs(inputs, succ)
1186           }
1187
1188           hir::ExprKind::Lit(..) | hir::ExprKind::Path(hir::QPath::TypeRelative(..)) => {
1189             succ
1190           }
1191
1192           // Note that labels have been resolved, so we don't need to look
1193           // at the label ident
1194           hir::ExprKind::Block(ref blk, _) => {
1195             self.propagate_through_block(&blk, succ)
1196           }
1197         }
1198     }
1199
1200     fn propagate_through_place_components(&mut self,
1201                                            expr: &Expr,
1202                                            succ: LiveNode)
1203                                            -> LiveNode {
1204         // # Places
1205         //
1206         // In general, the full flow graph structure for an
1207         // assignment/move/etc can be handled in one of two ways,
1208         // depending on whether what is being assigned is a "tracked
1209         // value" or not. A tracked value is basically a local
1210         // variable or argument.
1211         //
1212         // The two kinds of graphs are:
1213         //
1214         //    Tracked place          Untracked place
1215         // ----------------------++-----------------------
1216         //                       ||
1217         //         |             ||           |
1218         //         v             ||           v
1219         //     (rvalue)          ||       (rvalue)
1220         //         |             ||           |
1221         //         v             ||           v
1222         // (write of place)     ||   (place components)
1223         //         |             ||           |
1224         //         v             ||           v
1225         //      (succ)           ||        (succ)
1226         //                       ||
1227         // ----------------------++-----------------------
1228         //
1229         // I will cover the two cases in turn:
1230         //
1231         // # Tracked places
1232         //
1233         // A tracked place is a local variable/argument `x`.  In
1234         // these cases, the link_node where the write occurs is linked
1235         // to node id of `x`.  The `write_place()` routine generates
1236         // the contents of this node.  There are no subcomponents to
1237         // consider.
1238         //
1239         // # Non-tracked places
1240         //
1241         // These are places like `x[5]` or `x.f`.  In that case, we
1242         // basically ignore the value which is written to but generate
1243         // reads for the components---`x` in these two examples.  The
1244         // components reads are generated by
1245         // `propagate_through_place_components()` (this fn).
1246         //
1247         // # Illegal places
1248         //
1249         // It is still possible to observe assignments to non-places;
1250         // these errors are detected in the later pass borrowck.  We
1251         // just ignore such cases and treat them as reads.
1252
1253         match expr.node {
1254             hir::ExprKind::Path(_) => succ,
1255             hir::ExprKind::Field(ref e, _) => self.propagate_through_expr(&e, succ),
1256             _ => self.propagate_through_expr(expr, succ)
1257         }
1258     }
1259
1260     // see comment on propagate_through_place()
1261     fn write_place(&mut self, expr: &Expr, succ: LiveNode, acc: u32)
1262                     -> LiveNode {
1263         match expr.node {
1264           hir::ExprKind::Path(hir::QPath::Resolved(_, ref path)) => {
1265               self.access_path(expr.hir_id, path, succ, acc)
1266           }
1267
1268           // We do not track other places, so just propagate through
1269           // to their subcomponents.  Also, it may happen that
1270           // non-places occur here, because those are detected in the
1271           // later pass borrowck.
1272           _ => succ
1273         }
1274     }
1275
1276     fn access_var(&mut self, hir_id: HirId, nid: NodeId, succ: LiveNode, acc: u32, span: Span)
1277                   -> LiveNode {
1278         let ln = self.live_node(hir_id, span);
1279         if acc != 0 {
1280             self.init_from_succ(ln, succ);
1281             let var_hid = self.ir.tcx.hir.node_to_hir_id(nid);
1282             let var = self.variable(var_hid, span);
1283             self.acc(ln, var, acc);
1284         }
1285         ln
1286     }
1287
1288     fn access_path(&mut self, hir_id: HirId, path: &hir::Path, succ: LiveNode, acc: u32)
1289                    -> LiveNode {
1290         match path.def {
1291           Def::Local(nid) => {
1292             self.access_var(hir_id, nid, succ, acc, path.span)
1293           }
1294           _ => succ
1295         }
1296     }
1297
1298     fn propagate_through_loop(&mut self,
1299                               expr: &Expr,
1300                               kind: LoopKind,
1301                               body: &hir::Block,
1302                               succ: LiveNode)
1303                               -> LiveNode {
1304
1305         /*
1306
1307         We model control flow like this:
1308
1309               (cond) <--+
1310                 |       |
1311                 v       |
1312           +-- (expr)    |
1313           |     |       |
1314           |     v       |
1315           |   (body) ---+
1316           |
1317           |
1318           v
1319         (succ)
1320
1321         */
1322
1323
1324         // first iteration:
1325         let mut first_merge = true;
1326         let ln = self.live_node(expr.hir_id, expr.span);
1327         self.init_empty(ln, succ);
1328         match kind {
1329             LoopLoop => {}
1330             _ => {
1331                 // If this is not a `loop` loop, then it's possible we bypass
1332                 // the body altogether. Otherwise, the only way is via a `break`
1333                 // in the loop body.
1334                 self.merge_from_succ(ln, succ, first_merge);
1335                 first_merge = false;
1336             }
1337         }
1338         debug!("propagate_through_loop: using id for loop body {} {}",
1339                expr.id, self.ir.tcx.hir.node_to_pretty_string(body.id));
1340
1341         let break_ln = succ;
1342         let cont_ln = ln;
1343         self.break_ln.insert(expr.id, break_ln);
1344         self.cont_ln.insert(expr.id, cont_ln);
1345
1346         let cond_ln = match kind {
1347             LoopLoop => ln,
1348             WhileLoop(ref cond) => self.propagate_through_expr(&cond, ln),
1349         };
1350         let body_ln = self.propagate_through_block(body, cond_ln);
1351
1352         // repeat until fixed point is reached:
1353         while self.merge_from_succ(ln, body_ln, first_merge) {
1354             first_merge = false;
1355
1356             let new_cond_ln = match kind {
1357                 LoopLoop => ln,
1358                 WhileLoop(ref cond) => {
1359                     self.propagate_through_expr(&cond, ln)
1360                 }
1361             };
1362             assert!(cond_ln == new_cond_ln);
1363             assert!(body_ln == self.propagate_through_block(body, cond_ln));
1364         }
1365
1366         cond_ln
1367     }
1368 }
1369
1370 // _______________________________________________________________________
1371 // Checking for error conditions
1372
1373 impl<'a, 'tcx> Visitor<'tcx> for Liveness<'a, 'tcx> {
1374     fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
1375         NestedVisitorMap::None
1376     }
1377
1378     fn visit_local(&mut self, l: &'tcx hir::Local) {
1379         check_local(self, l);
1380     }
1381     fn visit_expr(&mut self, ex: &'tcx Expr) {
1382         check_expr(self, ex);
1383     }
1384     fn visit_arm(&mut self, a: &'tcx hir::Arm) {
1385         check_arm(self, a);
1386     }
1387 }
1388
1389 fn check_local<'a, 'tcx>(this: &mut Liveness<'a, 'tcx>, local: &'tcx hir::Local) {
1390     match local.init {
1391         Some(_) => {
1392             this.warn_about_unused_or_dead_vars_in_pat(&local.pat);
1393         },
1394         None => {
1395             this.pat_bindings(&local.pat, |this, ln, var, sp, id| {
1396                 let span = local.pat.simple_ident().map_or(sp, |ident| ident.span);
1397                 this.warn_about_unused(span, id, ln, var);
1398             })
1399         }
1400     }
1401
1402     intravisit::walk_local(this, local);
1403 }
1404
1405 fn check_arm<'a, 'tcx>(this: &mut Liveness<'a, 'tcx>, arm: &'tcx hir::Arm) {
1406     // only consider the first pattern; any later patterns must have
1407     // the same bindings, and we also consider the first pattern to be
1408     // the "authoritative" set of ids
1409     this.arm_pats_bindings(arm.pats.first().map(|p| &**p), |this, ln, var, sp, id| {
1410         this.warn_about_unused(sp, id, ln, var);
1411     });
1412     intravisit::walk_arm(this, arm);
1413 }
1414
1415 fn check_expr<'a, 'tcx>(this: &mut Liveness<'a, 'tcx>, expr: &'tcx Expr) {
1416     match expr.node {
1417       hir::ExprKind::Assign(ref l, _) => {
1418         this.check_place(&l);
1419
1420         intravisit::walk_expr(this, expr);
1421       }
1422
1423       hir::ExprKind::AssignOp(_, ref l, _) => {
1424         if !this.tables.is_method_call(expr) {
1425             this.check_place(&l);
1426         }
1427
1428         intravisit::walk_expr(this, expr);
1429       }
1430
1431       hir::ExprKind::InlineAsm(ref ia, ref outputs, ref inputs) => {
1432         for input in inputs {
1433           this.visit_expr(input);
1434         }
1435
1436         // Output operands must be places
1437         for (o, output) in ia.outputs.iter().zip(outputs) {
1438           if !o.is_indirect {
1439             this.check_place(output);
1440           }
1441           this.visit_expr(output);
1442         }
1443
1444         intravisit::walk_expr(this, expr);
1445       }
1446
1447       // no correctness conditions related to liveness
1448       hir::ExprKind::Call(..) | hir::ExprKind::MethodCall(..) | hir::ExprKind::If(..) |
1449       hir::ExprKind::Match(..) | hir::ExprKind::While(..) | hir::ExprKind::Loop(..) |
1450       hir::ExprKind::Index(..) | hir::ExprKind::Field(..) |
1451       hir::ExprKind::Array(..) | hir::ExprKind::Tup(..) | hir::ExprKind::Binary(..) |
1452       hir::ExprKind::Cast(..) | hir::ExprKind::Unary(..) | hir::ExprKind::Ret(..) |
1453       hir::ExprKind::Break(..) | hir::ExprKind::Continue(..) | hir::ExprKind::Lit(_) |
1454       hir::ExprKind::Block(..) | hir::ExprKind::AddrOf(..) |
1455       hir::ExprKind::Struct(..) | hir::ExprKind::Repeat(..) |
1456       hir::ExprKind::Closure(..) | hir::ExprKind::Path(_) | hir::ExprKind::Yield(..) |
1457       hir::ExprKind::Box(..) | hir::ExprKind::Type(..) => {
1458         intravisit::walk_expr(this, expr);
1459       }
1460     }
1461 }
1462
1463 impl<'a, 'tcx> Liveness<'a, 'tcx> {
1464     fn check_place(&mut self, expr: &'tcx Expr) {
1465         match expr.node {
1466             hir::ExprKind::Path(hir::QPath::Resolved(_, ref path)) => {
1467                 if let Def::Local(nid) = path.def {
1468                     // Assignment to an immutable variable or argument: only legal
1469                     // if there is no later assignment. If this local is actually
1470                     // mutable, then check for a reassignment to flag the mutability
1471                     // as being used.
1472                     let ln = self.live_node(expr.hir_id, expr.span);
1473                     let var_hid = self.ir.tcx.hir.node_to_hir_id(nid);
1474                     let var = self.variable(var_hid, expr.span);
1475                     self.warn_about_dead_assign(expr.span, expr.hir_id, ln, var);
1476                 }
1477             }
1478             _ => {
1479                 // For other kinds of places, no checks are required,
1480                 // and any embedded expressions are actually rvalues
1481                 intravisit::walk_expr(self, expr);
1482             }
1483         }
1484     }
1485
1486     fn should_warn(&self, var: Variable) -> Option<String> {
1487         let name = self.ir.variable_name(var);
1488         if name.is_empty() || name.as_bytes()[0] == ('_' as u8) {
1489             None
1490         } else {
1491             Some(name)
1492         }
1493     }
1494
1495     fn warn_about_unused_args(&self, body: &hir::Body, entry_ln: LiveNode) {
1496         for arg in &body.arguments {
1497             arg.pat.each_binding(|_bm, hir_id, _, ident| {
1498                 let sp = ident.span;
1499                 let var = self.variable(hir_id, sp);
1500                 // Ignore unused self.
1501                 if ident.name != keywords::SelfValue.name() {
1502                     if !self.warn_about_unused(sp, hir_id, entry_ln, var) {
1503                         if self.live_on_entry(entry_ln, var).is_none() {
1504                             self.report_dead_assign(hir_id, sp, var, true);
1505                         }
1506                     }
1507                 }
1508             })
1509         }
1510     }
1511
1512     fn warn_about_unused_or_dead_vars_in_pat(&mut self, pat: &hir::Pat) {
1513         self.pat_bindings(pat, |this, ln, var, sp, id| {
1514             if !this.warn_about_unused(sp, id, ln, var) {
1515                 this.warn_about_dead_assign(sp, id, ln, var);
1516             }
1517         })
1518     }
1519
1520     fn warn_about_unused(&self,
1521                          sp: Span,
1522                          hir_id: HirId,
1523                          ln: LiveNode,
1524                          var: Variable)
1525                          -> bool {
1526         if !self.used_on_entry(ln, var) {
1527             let r = self.should_warn(var);
1528             if let Some(name) = r {
1529
1530                 // annoying: for parameters in funcs like `fn(x: i32)
1531                 // {ret}`, there is only one node, so asking about
1532                 // assigned_on_exit() is not meaningful.
1533                 let is_assigned = if ln == self.s.exit_ln {
1534                     false
1535                 } else {
1536                     self.assigned_on_exit(ln, var).is_some()
1537                 };
1538
1539                 let suggest_underscore_msg = format!("consider using `_{}` instead",
1540                                                      name);
1541
1542                 if is_assigned {
1543                     self.ir.tcx
1544                         .lint_hir_note(lint::builtin::UNUSED_VARIABLES, hir_id, sp,
1545                                        &format!("variable `{}` is assigned to, but never used",
1546                                                 name),
1547                                        &suggest_underscore_msg);
1548                 } else if name != "self" {
1549                     let msg = format!("unused variable: `{}`", name);
1550                     let mut err = self.ir.tcx
1551                         .struct_span_lint_hir(lint::builtin::UNUSED_VARIABLES, hir_id, sp, &msg);
1552                     if self.ir.variable_is_shorthand(var) {
1553                         err.span_suggestion_with_applicability(sp, "try ignoring the field",
1554                                                                format!("{}: _", name),
1555                                                                Applicability::MachineApplicable);
1556                     } else {
1557                         err.span_suggestion_short_with_applicability(
1558                             sp, &suggest_underscore_msg,
1559                             format!("_{}", name),
1560                             Applicability::MachineApplicable,
1561                         );
1562                     }
1563                     err.emit()
1564                 }
1565             }
1566             true
1567         } else {
1568             false
1569         }
1570     }
1571
1572     fn warn_about_dead_assign(&self,
1573                               sp: Span,
1574                               hir_id: HirId,
1575                               ln: LiveNode,
1576                               var: Variable) {
1577         if self.live_on_exit(ln, var).is_none() {
1578             self.report_dead_assign(hir_id, sp, var, false);
1579         }
1580     }
1581
1582     fn report_dead_assign(&self, hir_id: HirId, sp: Span, var: Variable, is_argument: bool) {
1583         if let Some(name) = self.should_warn(var) {
1584             if is_argument {
1585                 self.ir.tcx.lint_hir(lint::builtin::UNUSED_ASSIGNMENTS, hir_id, sp,
1586                     &format!("value passed to `{}` is never read", name));
1587             } else {
1588                 self.ir.tcx.lint_hir(lint::builtin::UNUSED_ASSIGNMENTS, hir_id, sp,
1589                     &format!("value assigned to `{}` is never read", name));
1590             }
1591         }
1592     }
1593 }