Skip to content

Commit

Permalink
Use Visitor for AlwaysLiveLocals
Browse files Browse the repository at this point in the history
  • Loading branch information
ecstatic-morse committed Apr 9, 2020
1 parent 7154860 commit 209087b
Showing 1 changed file with 19 additions and 14 deletions.
33 changes: 19 additions & 14 deletions src/librustc_mir/util/storage.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use rustc_index::bit_set::BitSet;
use rustc_middle::mir::{self, Local};
use rustc_middle::mir::visit::Visitor;
use rustc_middle::mir::{self, Local, Location};

/// The set of locals in a MIR body that do not have `StorageLive`/`StorageDead` annotations.
///
Expand All @@ -12,20 +13,12 @@ pub struct AlwaysLiveLocals(BitSet<Local>);

impl AlwaysLiveLocals {
pub fn new(body: &mir::Body<'tcx>) -> Self {
let mut locals = BitSet::new_filled(body.local_decls.len());

// FIXME: Use a visitor for this when `visit_body` can take a plain `Body`.
for block in body.basic_blocks().iter() {
for stmt in &block.statements {
if let mir::StatementKind::StorageLive(l) | mir::StatementKind::StorageDead(l) =
stmt.kind
{
locals.remove(l);
}
}
}
let mut ret = AlwaysLiveLocals(BitSet::new_filled(body.local_decls.len()));

let mut vis = StorageAnnotationVisitor(&mut ret);
vis.visit_body(body);

AlwaysLiveLocals(locals)
ret
}

pub fn into_inner(self) -> BitSet<Local> {
Expand All @@ -40,3 +33,15 @@ impl std::ops::Deref for AlwaysLiveLocals {
&self.0
}
}

/// Removes locals that have `Storage*` annotations from `AlwaysLiveLocals`.
struct StorageAnnotationVisitor<'a>(&'a mut AlwaysLiveLocals);

impl Visitor<'tcx> for StorageAnnotationVisitor<'_> {
fn visit_statement(&mut self, statement: &mir::Statement<'tcx>, _location: Location) {
use mir::StatementKind::{StorageDead, StorageLive};
if let StorageLive(l) | StorageDead(l) = statement.kind {
(self.0).0.remove(l);
}
}
}

0 comments on commit 209087b

Please sign in to comment.