]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/borrow_check/used_muts.rs
Auto merge of #54043 - fintelia:raw_entry, r=alexcrichton
[rust.git] / src / librustc_mir / borrow_check / used_muts.rs
1 // Copyright 2018 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 use rustc::mir::visit::{PlaceContext, Visitor};
12 use rustc::mir::{Local, Location, Place};
13
14 use rustc_data_structures::fx::FxHashSet;
15
16 use borrow_check::MirBorrowckCtxt;
17
18 impl<'cx, 'gcx, 'tcx> MirBorrowckCtxt<'cx, 'gcx, 'tcx> {
19     /// Walks the MIR looking for assignments to a set of locals, as part of the unused mutable
20     /// local variables lint, to update the context's `used_mut` in a single walk.
21     crate fn gather_used_muts(&mut self, locals: FxHashSet<Local>) {
22         let mut visitor = GatherUsedMutsVisitor {
23             needles: locals,
24             mbcx: self,
25         };
26         visitor.visit_mir(visitor.mbcx.mir);
27     }
28 }
29
30 /// MIR visitor gathering the assignments to a set of locals, in a single walk.
31 /// 'visit = the duration of the MIR walk
32 struct GatherUsedMutsVisitor<'visit, 'cx: 'visit, 'gcx: 'tcx, 'tcx: 'cx> {
33     needles: FxHashSet<Local>,
34     mbcx: &'visit mut MirBorrowckCtxt<'cx, 'gcx, 'tcx>,
35 }
36
37 impl<'visit, 'cx, 'gcx, 'tcx> Visitor<'tcx> for GatherUsedMutsVisitor<'visit, 'cx, 'gcx, 'tcx> {
38     fn visit_local(
39         &mut self,
40         local: &Local,
41         place_context: PlaceContext<'tcx>,
42         location: Location,
43     ) {
44         if !self.needles.contains(local) {
45             return;
46         }
47
48         if place_context.is_place_assignment() {
49             // Propagate the Local assigned at this Location as a used mutable local variable
50             for moi in &self.mbcx.move_data.loc_map[location] {
51                 let mpi = &self.mbcx.move_data.moves[*moi].path;
52                 let path = &self.mbcx.move_data.move_paths[*mpi];
53                 debug!(
54                     "assignment of {:?} to {:?}, adding {:?} to used mutable set",
55                     path.place, local, path.place
56                 );
57                 if let Place::Local(user_local) = path.place {
58                     self.mbcx.used_mut.insert(user_local);
59                 }
60             }
61         }
62     }
63 }