]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/util/storage.rs
2ce9bed794d96580f31fcca08436805f93e5931d
[rust.git] / src / librustc_mir / util / storage.rs
1 use rustc_index::bit_set::BitSet;
2 use rustc_middle::mir::{self, Local};
3
4 /// The set of locals in a MIR body that do not have `StorageLive`/`StorageDead` annotations.
5 ///
6 /// These locals have fixed storage for the duration of the body.
7 //
8 // FIXME: Currently, we need to traverse the entire MIR to compute this. We should instead store it
9 // as a field in the `LocalDecl` for each `Local`.
10 #[derive(Debug, Clone)]
11 pub struct AlwaysLiveLocals(BitSet<Local>);
12
13 impl AlwaysLiveLocals {
14     pub fn new(body: &mir::Body<'tcx>) -> Self {
15         let mut locals = BitSet::new_filled(body.local_decls.len());
16
17         // FIXME: Use a visitor for this when `visit_body` can take a plain `Body`.
18         for block in body.basic_blocks().iter() {
19             for stmt in &block.statements {
20                 if let mir::StatementKind::StorageLive(l) | mir::StatementKind::StorageDead(l) =
21                     stmt.kind
22                 {
23                     locals.remove(l);
24                 }
25             }
26         }
27
28         AlwaysLiveLocals(locals)
29     }
30
31     pub fn into_inner(self) -> BitSet<Local> {
32         self.0
33     }
34 }
35
36 impl std::ops::Deref for AlwaysLiveLocals {
37     type Target = BitSet<Local>;
38
39     fn deref(&self) -> &Self::Target {
40         &self.0
41     }
42 }