2016-08-15 20:59:50 -05:00
|
|
|
//! A number of passes which remove various redundancies in the CFG.
|
2016-06-06 14:58:28 -05:00
|
|
|
//!
|
2016-08-15 20:59:50 -05:00
|
|
|
//! The `SimplifyCfg` pass gets rid of unnecessary blocks in the CFG, whereas the `SimplifyLocals`
|
|
|
|
//! gets rid of all the unnecessary local variable declarations.
|
2016-06-06 14:58:28 -05:00
|
|
|
//!
|
2016-08-15 20:59:50 -05:00
|
|
|
//! The `SimplifyLocals` pass is kinda expensive and therefore not very suitable to be run often.
|
|
|
|
//! Most of the passes should not care or be impacted in meaningful ways due to extra locals
|
2018-05-08 08:10:16 -05:00
|
|
|
//! either, so running the pass once, right before codegen, should suffice.
|
2016-08-15 20:59:50 -05:00
|
|
|
//!
|
|
|
|
//! On the other side of the spectrum, the `SimplifyCfg` pass is considerably cheap to run, thus
|
|
|
|
//! one should run it after every pass which may modify CFG in significant ways. This pass must
|
|
|
|
//! also be run before any analysis passes because it removes dead blocks, and some of these can be
|
|
|
|
//! ill-typed.
|
|
|
|
//!
|
|
|
|
//! The cause of this typing issue is typeck allowing most blocks whose end is not reachable have
|
|
|
|
//! an arbitrary return type, rather than having the usual () return type (as a note, typeck's
|
|
|
|
//! notion of reachability is in fact slightly weaker than MIR CFG reachability - see #31617). A
|
|
|
|
//! standard example of the situation is:
|
2016-06-06 14:58:28 -05:00
|
|
|
//!
|
|
|
|
//! ```rust
|
|
|
|
//! fn example() {
|
|
|
|
//! let _a: char = { return; };
|
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
//!
|
2016-08-15 20:59:50 -05:00
|
|
|
//! Here the block (`{ return; }`) has the return type `char`, rather than `()`, but the MIR we
|
|
|
|
//! naively generate still contains the `_a = ()` write in the unreachable block "after" the
|
|
|
|
//! return.
|
2016-06-06 14:58:28 -05:00
|
|
|
|
2019-12-22 16:42:04 -06:00
|
|
|
use crate::transform::{MirPass, MirSource};
|
2020-03-29 10:19:48 -05:00
|
|
|
use rustc_index::bit_set::BitSet;
|
|
|
|
use rustc_index::vec::{Idx, IndexVec};
|
2020-03-29 09:41:09 -05:00
|
|
|
use rustc_middle::mir::visit::{MutVisitor, MutatingUseContext, PlaceContext, Visitor};
|
|
|
|
use rustc_middle::mir::*;
|
2020-04-17 16:31:21 -05:00
|
|
|
use rustc_middle::ty::TyCtxt;
|
2020-07-31 11:40:25 -05:00
|
|
|
use smallvec::SmallVec;
|
2017-04-25 17:23:33 -05:00
|
|
|
use std::borrow::Cow;
|
2016-02-26 10:05:50 -06:00
|
|
|
|
2019-12-22 16:42:04 -06:00
|
|
|
pub struct SimplifyCfg {
|
|
|
|
label: String,
|
|
|
|
}
|
2015-11-10 14:38:36 -06:00
|
|
|
|
2017-04-25 17:23:33 -05:00
|
|
|
impl SimplifyCfg {
|
|
|
|
pub fn new(label: &str) -> Self {
|
|
|
|
SimplifyCfg { label: format!("SimplifyCfg-{}", label) }
|
2015-11-10 14:38:36 -06:00
|
|
|
}
|
2015-11-14 16:52:17 -06:00
|
|
|
}
|
|
|
|
|
2020-04-12 12:31:00 -05:00
|
|
|
pub fn simplify_cfg(body: &mut Body<'_>) {
|
2019-11-06 11:00:46 -06:00
|
|
|
CfgSimplifier::new(body).simplify();
|
|
|
|
remove_dead_blocks(body);
|
2017-03-09 12:36:01 -06:00
|
|
|
|
|
|
|
// FIXME: Should probably be moved into some kind of pass manager
|
2019-11-06 11:00:46 -06:00
|
|
|
body.basic_blocks_mut().raw.shrink_to_fit();
|
2017-03-09 12:36:01 -06:00
|
|
|
}
|
|
|
|
|
2019-08-04 15:20:00 -05:00
|
|
|
impl<'tcx> MirPass<'tcx> for SimplifyCfg {
|
2019-06-21 11:12:39 -05:00
|
|
|
fn name(&self) -> Cow<'_, str> {
|
2017-04-25 17:23:33 -05:00
|
|
|
Cow::Borrowed(&self.label)
|
2015-11-14 16:52:17 -06:00
|
|
|
}
|
|
|
|
|
2020-04-12 12:31:00 -05:00
|
|
|
fn run_pass(&self, _tcx: TyCtxt<'tcx>, _src: MirSource<'tcx>, body: &mut Body<'tcx>) {
|
2019-11-06 11:00:46 -06:00
|
|
|
debug!("SimplifyCfg({:?}) - simplifying {:?}", self.label, body);
|
|
|
|
simplify_cfg(body);
|
2016-06-08 13:03:06 -05:00
|
|
|
}
|
|
|
|
}
|
2015-11-14 16:52:17 -06:00
|
|
|
|
2019-06-14 11:39:39 -05:00
|
|
|
pub struct CfgSimplifier<'a, 'tcx> {
|
2019-10-03 23:55:28 -05:00
|
|
|
basic_blocks: &'a mut IndexVec<BasicBlock, BasicBlockData<'tcx>>,
|
2019-12-22 16:42:04 -06:00
|
|
|
pred_count: IndexVec<BasicBlock, u32>,
|
2016-06-08 16:10:15 -05:00
|
|
|
}
|
2015-11-10 14:38:36 -06:00
|
|
|
|
2019-06-14 11:39:39 -05:00
|
|
|
impl<'a, 'tcx> CfgSimplifier<'a, 'tcx> {
|
2020-04-12 12:31:00 -05:00
|
|
|
pub fn new(body: &'a mut Body<'tcx>) -> Self {
|
2019-11-06 11:00:46 -06:00
|
|
|
let mut pred_count = IndexVec::from_elem(0u32, body.basic_blocks());
|
2015-11-14 16:52:17 -06:00
|
|
|
|
2016-06-08 16:10:15 -05:00
|
|
|
// we can't use mir.predecessors() here because that counts
|
|
|
|
// dead blocks, which we don't want to.
|
2016-10-04 08:23:01 -05:00
|
|
|
pred_count[START_BLOCK] = 1;
|
|
|
|
|
2019-11-06 11:00:46 -06:00
|
|
|
for (_, data) in traversal::preorder(body) {
|
2019-10-03 23:55:28 -05:00
|
|
|
if let Some(ref term) = data.terminator {
|
2018-04-27 06:02:09 -05:00
|
|
|
for &tgt in term.successors() {
|
2016-06-08 16:10:15 -05:00
|
|
|
pred_count[tgt] += 1;
|
2015-11-14 16:52:17 -06:00
|
|
|
}
|
|
|
|
}
|
2015-11-10 14:38:36 -06:00
|
|
|
}
|
|
|
|
|
2019-11-06 11:00:46 -06:00
|
|
|
let basic_blocks = body.basic_blocks_mut();
|
2019-10-03 23:55:28 -05:00
|
|
|
|
2019-12-22 16:42:04 -06:00
|
|
|
CfgSimplifier { basic_blocks, pred_count }
|
2015-11-14 16:52:17 -06:00
|
|
|
}
|
|
|
|
|
2017-02-08 03:24:49 -06:00
|
|
|
pub fn simplify(mut self) {
|
2017-07-31 16:10:46 -05:00
|
|
|
self.strip_nops();
|
|
|
|
|
2018-12-12 20:43:14 -06:00
|
|
|
let mut start = START_BLOCK;
|
|
|
|
|
2020-02-16 16:23:44 -06:00
|
|
|
// Vec of the blocks that should be merged. We store the indices here, instead of the
|
|
|
|
// statements itself to avoid moving the (relatively) large statements twice.
|
|
|
|
// We do not push the statements directly into the target block (`bb`) as that is slower
|
|
|
|
// due to additional reallocations
|
2020-02-13 04:44:12 -06:00
|
|
|
let mut merged_blocks = Vec::new();
|
2016-06-08 16:10:15 -05:00
|
|
|
loop {
|
|
|
|
let mut changed = false;
|
|
|
|
|
2018-12-12 20:43:14 -06:00
|
|
|
self.collapse_goto_chain(&mut start, &mut changed);
|
|
|
|
|
2019-10-03 23:55:28 -05:00
|
|
|
for bb in self.basic_blocks.indices() {
|
2016-06-08 16:10:15 -05:00
|
|
|
if self.pred_count[bb] == 0 {
|
2019-12-22 16:42:04 -06:00
|
|
|
continue;
|
2016-06-08 16:10:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
debug!("simplifying {:?}", bb);
|
|
|
|
|
2019-12-22 16:42:04 -06:00
|
|
|
let mut terminator =
|
|
|
|
self.basic_blocks[bb].terminator.take().expect("invalid terminator state");
|
2016-06-08 16:10:15 -05:00
|
|
|
|
|
|
|
for successor in terminator.successors_mut() {
|
|
|
|
self.collapse_goto_chain(successor, &mut changed);
|
2015-11-14 16:52:17 -06:00
|
|
|
}
|
2016-06-08 16:10:15 -05:00
|
|
|
|
|
|
|
let mut inner_changed = true;
|
2020-02-16 16:23:44 -06:00
|
|
|
merged_blocks.clear();
|
2016-06-08 16:10:15 -05:00
|
|
|
while inner_changed {
|
|
|
|
inner_changed = false;
|
|
|
|
inner_changed |= self.simplify_branch(&mut terminator);
|
2020-02-13 04:44:12 -06:00
|
|
|
inner_changed |= self.merge_successor(&mut merged_blocks, &mut terminator);
|
2016-06-08 16:10:15 -05:00
|
|
|
changed |= inner_changed;
|
|
|
|
}
|
2019-10-03 23:55:28 -05:00
|
|
|
|
2020-03-02 13:08:21 -06:00
|
|
|
let statements_to_merge =
|
2020-02-13 04:44:12 -06:00
|
|
|
merged_blocks.iter().map(|&i| self.basic_blocks[i].statements.len()).sum();
|
|
|
|
|
2020-03-02 13:08:21 -06:00
|
|
|
if statements_to_merge > 0 {
|
2020-02-13 04:44:12 -06:00
|
|
|
let mut statements = std::mem::take(&mut self.basic_blocks[bb].statements);
|
2020-03-02 13:08:21 -06:00
|
|
|
statements.reserve(statements_to_merge);
|
2020-02-13 04:44:12 -06:00
|
|
|
for &from in &merged_blocks {
|
|
|
|
statements.append(&mut self.basic_blocks[from].statements);
|
|
|
|
}
|
|
|
|
self.basic_blocks[bb].statements = statements;
|
|
|
|
}
|
|
|
|
|
2020-01-30 03:35:50 -06:00
|
|
|
self.basic_blocks[bb].terminator = Some(terminator);
|
2016-06-08 16:10:15 -05:00
|
|
|
|
|
|
|
changed |= inner_changed;
|
2015-11-10 14:38:36 -06:00
|
|
|
}
|
2016-06-08 16:10:15 -05:00
|
|
|
|
2019-12-22 16:42:04 -06:00
|
|
|
if !changed {
|
|
|
|
break;
|
|
|
|
}
|
2015-11-10 14:38:36 -06:00
|
|
|
}
|
2018-12-12 20:43:14 -06:00
|
|
|
|
|
|
|
if start != START_BLOCK {
|
|
|
|
debug_assert!(self.pred_count[START_BLOCK] == 0);
|
2019-10-03 23:55:28 -05:00
|
|
|
self.basic_blocks.swap(START_BLOCK, start);
|
2018-12-12 20:43:14 -06:00
|
|
|
self.pred_count.swap(START_BLOCK, start);
|
|
|
|
|
|
|
|
// pred_count == 1 if the start block has no predecessor _blocks_.
|
|
|
|
if self.pred_count[START_BLOCK] > 1 {
|
2019-10-03 23:55:28 -05:00
|
|
|
for (bb, data) in self.basic_blocks.iter_enumerated_mut() {
|
2018-12-12 20:43:14 -06:00
|
|
|
if self.pred_count[bb] == 0 {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-10-03 23:55:28 -05:00
|
|
|
for target in data.terminator_mut().successors_mut() {
|
2018-12-12 20:43:14 -06:00
|
|
|
if *target == start {
|
|
|
|
*target = START_BLOCK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-11-10 14:38:36 -06:00
|
|
|
}
|
|
|
|
|
2020-07-31 11:40:25 -05:00
|
|
|
/// This function will return `None` if
|
|
|
|
/// * the block has statements
|
|
|
|
/// * the block has a terminator other than `goto`
|
|
|
|
/// * the block has no terminator (meaning some other part of the current optimization stole it)
|
|
|
|
fn take_terminator_if_simple_goto(&mut self, bb: BasicBlock) -> Option<Terminator<'tcx>> {
|
|
|
|
match self.basic_blocks[bb] {
|
2016-06-08 16:10:15 -05:00
|
|
|
BasicBlockData {
|
|
|
|
ref statements,
|
2019-12-22 16:42:04 -06:00
|
|
|
terminator:
|
|
|
|
ref mut terminator @ Some(Terminator { kind: TerminatorKind::Goto { .. }, .. }),
|
|
|
|
..
|
2016-06-08 16:10:15 -05:00
|
|
|
} if statements.is_empty() => terminator.take(),
|
|
|
|
// if `terminator` is None, this means we are in a loop. In that
|
|
|
|
// case, let all the loop collapse to its entry.
|
2020-07-31 11:40:25 -05:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
2016-06-08 16:10:15 -05:00
|
|
|
|
2020-07-31 11:40:25 -05:00
|
|
|
/// Collapse a goto chain starting from `start`
|
|
|
|
fn collapse_goto_chain(&mut self, start: &mut BasicBlock, changed: &mut bool) {
|
|
|
|
// Using `SmallVec` here, because in some logs on libcore oli-obk saw many single-element
|
|
|
|
// goto chains. We should probably benchmark different sizes.
|
|
|
|
let mut terminators: SmallVec<[_; 1]> = Default::default();
|
|
|
|
let mut current = *start;
|
|
|
|
while let Some(terminator) = self.take_terminator_if_simple_goto(current) {
|
|
|
|
let target = match terminator {
|
|
|
|
Terminator { kind: TerminatorKind::Goto { target }, .. } => target,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
terminators.push((current, terminator));
|
|
|
|
current = target;
|
|
|
|
}
|
|
|
|
let last = current;
|
|
|
|
*start = last;
|
|
|
|
while let Some((current, mut terminator)) = terminators.pop() {
|
|
|
|
let target = match terminator {
|
|
|
|
Terminator { kind: TerminatorKind::Goto { ref mut target }, .. } => target,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
*target = last;
|
|
|
|
debug!("collapsing goto chain from {:?} to {:?}", current, target);
|
|
|
|
|
|
|
|
if self.pred_count[current] == 1 {
|
|
|
|
// This is the last reference to current, so the pred-count to
|
|
|
|
// to target is moved into the current block.
|
|
|
|
self.pred_count[current] = 0;
|
|
|
|
} else {
|
|
|
|
self.pred_count[*target] += 1;
|
|
|
|
self.pred_count[current] -= 1;
|
2016-06-08 16:10:15 -05:00
|
|
|
}
|
2020-07-31 11:40:25 -05:00
|
|
|
*changed = true;
|
|
|
|
self.basic_blocks[current].terminator = Some(terminator);
|
2016-10-04 08:27:27 -05:00
|
|
|
}
|
2016-06-08 16:10:15 -05:00
|
|
|
}
|
2016-01-31 11:17:15 -06:00
|
|
|
|
2016-06-08 16:10:15 -05:00
|
|
|
// merge a block with 1 `goto` predecessor to its parent
|
2019-12-22 16:42:04 -06:00
|
|
|
fn merge_successor(
|
|
|
|
&mut self,
|
2020-02-13 04:44:12 -06:00
|
|
|
merged_blocks: &mut Vec<BasicBlock>,
|
2019-12-22 16:42:04 -06:00
|
|
|
terminator: &mut Terminator<'tcx>,
|
|
|
|
) -> bool {
|
2016-06-08 16:10:15 -05:00
|
|
|
let target = match terminator.kind {
|
2019-12-22 16:42:04 -06:00
|
|
|
TerminatorKind::Goto { target } if self.pred_count[target] == 1 => target,
|
|
|
|
_ => return false,
|
2016-06-08 16:10:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
debug!("merging block {:?} into {:?}", target, terminator);
|
2019-10-03 23:55:28 -05:00
|
|
|
*terminator = match self.basic_blocks[target].terminator.take() {
|
2016-06-08 16:10:15 -05:00
|
|
|
Some(terminator) => terminator,
|
|
|
|
None => {
|
|
|
|
// unreachable loop - this should not be possible, as we
|
|
|
|
// don't strand blocks, but handle it correctly.
|
2019-12-22 16:42:04 -06:00
|
|
|
return false;
|
2016-06-08 16:10:15 -05:00
|
|
|
}
|
|
|
|
};
|
2020-01-30 03:35:50 -06:00
|
|
|
|
2020-02-13 04:44:12 -06:00
|
|
|
merged_blocks.push(target);
|
2016-06-08 16:10:15 -05:00
|
|
|
self.pred_count[target] = 0;
|
2016-01-31 11:17:15 -06:00
|
|
|
|
2016-06-08 16:10:15 -05:00
|
|
|
true
|
|
|
|
}
|
2016-05-25 00:39:32 -05:00
|
|
|
|
2016-06-08 16:10:15 -05:00
|
|
|
// turn a branch with all successors identical to a goto
|
|
|
|
fn simplify_branch(&mut self, terminator: &mut Terminator<'tcx>) -> bool {
|
|
|
|
match terminator.kind {
|
2019-12-22 16:42:04 -06:00
|
|
|
TerminatorKind::SwitchInt { .. } => {}
|
|
|
|
_ => return false,
|
2016-06-08 16:10:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
let first_succ = {
|
2020-03-02 18:19:00 -06:00
|
|
|
if let Some(&first_succ) = terminator.successors().next() {
|
2018-04-27 06:02:09 -05:00
|
|
|
if terminator.successors().all(|s| *s == first_succ) {
|
|
|
|
let count = terminator.successors().count();
|
|
|
|
self.pred_count[first_succ] -= (count - 1) as u32;
|
2016-06-08 16:10:15 -05:00
|
|
|
first_succ
|
|
|
|
} else {
|
2019-12-22 16:42:04 -06:00
|
|
|
return false;
|
2015-11-10 14:38:36 -06:00
|
|
|
}
|
2016-06-08 16:10:15 -05:00
|
|
|
} else {
|
2019-12-22 16:42:04 -06:00
|
|
|
return false;
|
2015-11-10 14:38:36 -06:00
|
|
|
}
|
2016-06-08 16:10:15 -05:00
|
|
|
};
|
2015-11-10 14:38:36 -06:00
|
|
|
|
2016-06-08 16:10:15 -05:00
|
|
|
debug!("simplifying branch {:?}", terminator);
|
|
|
|
terminator.kind = TerminatorKind::Goto { target: first_succ };
|
|
|
|
true
|
2015-11-10 14:38:36 -06:00
|
|
|
}
|
2017-02-08 03:24:49 -06:00
|
|
|
|
|
|
|
fn strip_nops(&mut self) {
|
2019-10-03 23:55:28 -05:00
|
|
|
for blk in self.basic_blocks.iter_mut() {
|
2019-12-22 16:42:04 -06:00
|
|
|
blk.statements
|
|
|
|
.retain(|stmt| if let StatementKind::Nop = stmt.kind { false } else { true })
|
2017-02-08 03:24:49 -06:00
|
|
|
}
|
|
|
|
}
|
2015-11-10 14:38:36 -06:00
|
|
|
}
|
2016-06-06 14:58:28 -05:00
|
|
|
|
2020-04-12 12:31:00 -05:00
|
|
|
pub fn remove_dead_blocks(body: &mut Body<'_>) {
|
2019-11-06 11:00:46 -06:00
|
|
|
let mut seen = BitSet::new_empty(body.basic_blocks().len());
|
|
|
|
for (bb, _) in traversal::preorder(body) {
|
2016-06-06 14:58:28 -05:00
|
|
|
seen.insert(bb.index());
|
|
|
|
}
|
|
|
|
|
2019-11-06 11:00:46 -06:00
|
|
|
let basic_blocks = body.basic_blocks_mut();
|
2019-10-03 23:55:28 -05:00
|
|
|
|
|
|
|
let num_blocks = basic_blocks.len();
|
2019-12-22 16:42:04 -06:00
|
|
|
let mut replacements: Vec<_> = (0..num_blocks).map(BasicBlock::new).collect();
|
2019-10-03 23:55:28 -05:00
|
|
|
let mut used_blocks = 0;
|
|
|
|
for alive_index in seen.iter() {
|
|
|
|
replacements[alive_index] = BasicBlock::new(used_blocks);
|
|
|
|
if alive_index != used_blocks {
|
|
|
|
// Swap the next alive block data with the current available slot. Since
|
|
|
|
// alive_index is non-decreasing this is a valid operation.
|
|
|
|
basic_blocks.raw.swap(alive_index, used_blocks);
|
2016-06-06 14:58:28 -05:00
|
|
|
}
|
2019-10-03 23:55:28 -05:00
|
|
|
used_blocks += 1;
|
2016-06-06 14:58:28 -05:00
|
|
|
}
|
2019-10-03 23:55:28 -05:00
|
|
|
basic_blocks.raw.truncate(used_blocks);
|
2016-06-06 14:58:28 -05:00
|
|
|
|
2019-10-03 23:55:28 -05:00
|
|
|
for block in basic_blocks {
|
|
|
|
for target in block.terminator_mut().successors_mut() {
|
2016-06-06 14:58:28 -05:00
|
|
|
*target = replacements[target.index()];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-15 20:59:50 -05:00
|
|
|
|
|
|
|
pub struct SimplifyLocals;
|
|
|
|
|
2019-08-04 15:20:00 -05:00
|
|
|
impl<'tcx> MirPass<'tcx> for SimplifyLocals {
|
2020-04-12 12:31:00 -05:00
|
|
|
fn run_pass(&self, tcx: TyCtxt<'tcx>, source: MirSource<'tcx>, body: &mut Body<'tcx>) {
|
2019-10-17 05:46:51 -05:00
|
|
|
trace!("running SimplifyLocals on {:?}", source);
|
2020-04-03 19:28:07 -05:00
|
|
|
|
2020-04-16 07:34:37 -05:00
|
|
|
// First, we're going to get a count of *actual* uses for every `Local`.
|
|
|
|
// Take a look at `DeclMarker::visit_local()` to see exactly what is ignored.
|
2020-04-03 19:28:07 -05:00
|
|
|
let mut used_locals = {
|
|
|
|
let mut marker = DeclMarker::new(body);
|
2020-04-12 12:31:00 -05:00
|
|
|
marker.visit_body(&body);
|
2018-02-07 09:28:07 -06:00
|
|
|
|
2020-04-03 19:28:07 -05:00
|
|
|
marker.local_counts
|
2019-10-17 05:46:51 -05:00
|
|
|
};
|
|
|
|
|
2020-04-03 19:28:07 -05:00
|
|
|
let arg_count = body.arg_count;
|
|
|
|
|
2020-04-16 07:34:37 -05:00
|
|
|
// Next, we're going to remove any `Local` with zero actual uses. When we remove those
|
|
|
|
// `Locals`, we're also going to subtract any uses of other `Locals` from the `used_locals`
|
|
|
|
// count. For example, if we removed `_2 = discriminant(_1)`, then we'll subtract one from
|
|
|
|
// `use_counts[_1]`. That in turn might make `_1` unused, so we loop until we hit a
|
|
|
|
// fixedpoint where there are no more unused locals.
|
2020-04-03 19:28:07 -05:00
|
|
|
loop {
|
|
|
|
let mut remove_statements = RemoveStatements::new(&mut used_locals, arg_count, tcx);
|
|
|
|
remove_statements.visit_body(body);
|
|
|
|
|
|
|
|
if !remove_statements.modified {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-16 07:34:37 -05:00
|
|
|
// Finally, we'll actually do the work of shrinking `body.local_decls` and remapping the `Local`s.
|
2020-04-03 19:28:07 -05:00
|
|
|
let map = make_local_map(&mut body.local_decls, used_locals, arg_count);
|
|
|
|
|
|
|
|
// Only bother running the `LocalUpdater` if we actually found locals to remove.
|
|
|
|
if map.iter().any(Option::is_none) {
|
|
|
|
// Update references to all vars and tmps now
|
|
|
|
let mut updater = LocalUpdater { map, tcx };
|
|
|
|
updater.visit_body(body);
|
|
|
|
|
|
|
|
body.local_decls.shrink_to_fit();
|
|
|
|
}
|
2016-08-15 20:59:50 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Construct the mapping while swapping out unused stuff out from the `vec`.
|
2019-06-11 04:47:30 -05:00
|
|
|
fn make_local_map<V>(
|
2020-04-03 19:28:07 -05:00
|
|
|
local_decls: &mut IndexVec<Local, V>,
|
|
|
|
used_locals: IndexVec<Local, usize>,
|
|
|
|
arg_count: usize,
|
2018-07-22 11:23:39 -05:00
|
|
|
) -> IndexVec<Local, Option<Local>> {
|
2020-04-03 19:28:07 -05:00
|
|
|
let mut map: IndexVec<Local, Option<Local>> = IndexVec::from_elem(None, &*local_decls);
|
2018-07-22 11:23:39 -05:00
|
|
|
let mut used = Local::new(0);
|
2020-04-03 19:28:07 -05:00
|
|
|
for (alive_index, count) in used_locals.iter_enumerated() {
|
|
|
|
// The `RETURN_PLACE` and arguments are always live.
|
|
|
|
if alive_index.as_usize() > arg_count && *count == 0 {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-07-22 11:23:39 -05:00
|
|
|
map[alive_index] = Some(used);
|
2016-08-15 20:59:50 -05:00
|
|
|
if alive_index != used {
|
2020-04-03 19:28:07 -05:00
|
|
|
local_decls.swap(alive_index, used);
|
2016-08-15 20:59:50 -05:00
|
|
|
}
|
2018-07-22 11:23:39 -05:00
|
|
|
used.increment_by(1);
|
2016-08-15 20:59:50 -05:00
|
|
|
}
|
2020-04-03 19:28:07 -05:00
|
|
|
local_decls.truncate(used.index());
|
2016-08-15 20:59:50 -05:00
|
|
|
map
|
|
|
|
}
|
|
|
|
|
2019-10-17 05:46:51 -05:00
|
|
|
struct DeclMarker<'a, 'tcx> {
|
2020-04-03 19:28:07 -05:00
|
|
|
pub local_counts: IndexVec<Local, usize>,
|
2019-10-17 05:46:51 -05:00
|
|
|
pub body: &'a Body<'tcx>,
|
2016-08-15 20:59:50 -05:00
|
|
|
}
|
|
|
|
|
2020-04-03 19:28:07 -05:00
|
|
|
impl<'a, 'tcx> DeclMarker<'a, 'tcx> {
|
|
|
|
pub fn new(body: &'a Body<'tcx>) -> Self {
|
|
|
|
Self { local_counts: IndexVec::from_elem(0, &body.local_decls), body }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-17 05:46:51 -05:00
|
|
|
impl<'a, 'tcx> Visitor<'tcx> for DeclMarker<'a, 'tcx> {
|
|
|
|
fn visit_local(&mut self, local: &Local, ctx: PlaceContext, location: Location) {
|
2018-10-26 06:22:45 -05:00
|
|
|
// Ignore storage markers altogether, they get removed along with their otherwise unused
|
|
|
|
// decls.
|
|
|
|
// FIXME: Extend this to all non-uses.
|
2019-10-17 05:46:51 -05:00
|
|
|
if ctx.is_storage_marker() {
|
|
|
|
return;
|
2016-08-15 20:59:50 -05:00
|
|
|
}
|
2019-10-17 05:46:51 -05:00
|
|
|
|
|
|
|
// Ignore stores of constants because `ConstProp` and `CopyProp` can remove uses of many
|
|
|
|
// of these locals. However, if the local is still needed, then it will be referenced in
|
|
|
|
// another place and we'll mark it as being used there.
|
2019-12-22 16:42:04 -06:00
|
|
|
if ctx == PlaceContext::MutatingUse(MutatingUseContext::Store)
|
|
|
|
|| ctx == PlaceContext::MutatingUse(MutatingUseContext::Projection)
|
|
|
|
{
|
2019-11-07 18:21:40 -06:00
|
|
|
let block = &self.body.basic_blocks()[location.block];
|
|
|
|
if location.statement_index != block.statements.len() {
|
2019-12-22 16:42:04 -06:00
|
|
|
let stmt = &block.statements[location.statement_index];
|
2019-11-07 18:21:40 -06:00
|
|
|
|
2020-03-30 08:56:52 -05:00
|
|
|
if let StatementKind::Assign(box (dest, rvalue)) = &stmt.kind {
|
|
|
|
if !dest.is_indirect() && dest.local == *local {
|
2020-04-03 18:31:59 -05:00
|
|
|
let can_skip = match rvalue {
|
2020-04-17 16:31:21 -05:00
|
|
|
Rvalue::Use(_)
|
|
|
|
| Rvalue::Discriminant(_)
|
|
|
|
| Rvalue::BinaryOp(_, _, _)
|
|
|
|
| Rvalue::CheckedBinaryOp(_, _, _)
|
|
|
|
| Rvalue::Repeat(_, _)
|
|
|
|
| Rvalue::AddressOf(_, _)
|
|
|
|
| Rvalue::Len(_)
|
|
|
|
| Rvalue::UnaryOp(_, _)
|
|
|
|
| Rvalue::Aggregate(_, _) => true,
|
2020-04-03 18:31:59 -05:00
|
|
|
|
|
|
|
_ => false,
|
|
|
|
};
|
|
|
|
|
|
|
|
if can_skip {
|
|
|
|
trace!("skipping store of {:?} to {:?}", rvalue, dest);
|
2020-03-30 08:56:52 -05:00
|
|
|
return;
|
2019-12-22 16:42:04 -06:00
|
|
|
}
|
2019-11-07 18:21:40 -06:00
|
|
|
}
|
2019-10-17 05:46:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-03 19:28:07 -05:00
|
|
|
self.local_counts[*local] += 1;
|
2016-08-15 20:59:50 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-03 19:28:07 -05:00
|
|
|
struct StatementDeclMarker<'a, 'tcx> {
|
2020-04-13 20:02:03 -05:00
|
|
|
used_locals: &'a mut IndexVec<Local, usize>,
|
2020-04-03 19:28:07 -05:00
|
|
|
statement: &'a Statement<'tcx>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'tcx> StatementDeclMarker<'a, 'tcx> {
|
2020-04-13 20:02:03 -05:00
|
|
|
pub fn new(
|
|
|
|
used_locals: &'a mut IndexVec<Local, usize>,
|
|
|
|
statement: &'a Statement<'tcx>,
|
|
|
|
) -> Self {
|
|
|
|
Self { used_locals, statement }
|
2020-04-03 19:28:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'tcx> Visitor<'tcx> for StatementDeclMarker<'a, 'tcx> {
|
|
|
|
fn visit_local(&mut self, local: &Local, context: PlaceContext, _location: Location) {
|
|
|
|
// Skip the lvalue for assignments
|
|
|
|
if let StatementKind::Assign(box (p, _)) = self.statement.kind {
|
|
|
|
if p.local == *local && context.is_place_assignment() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-13 20:02:03 -05:00
|
|
|
let use_count = &mut self.used_locals[*local];
|
|
|
|
// If this is the local we're removing...
|
|
|
|
if *use_count != 0 {
|
|
|
|
*use_count -= 1;
|
|
|
|
}
|
2020-04-03 19:28:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct RemoveStatements<'a, 'tcx> {
|
|
|
|
used_locals: &'a mut IndexVec<Local, usize>,
|
|
|
|
arg_count: usize,
|
2019-10-20 15:11:04 -05:00
|
|
|
tcx: TyCtxt<'tcx>,
|
2020-04-03 19:28:07 -05:00
|
|
|
modified: bool,
|
2016-08-15 20:59:50 -05:00
|
|
|
}
|
|
|
|
|
2020-04-03 19:28:07 -05:00
|
|
|
impl<'a, 'tcx> RemoveStatements<'a, 'tcx> {
|
|
|
|
fn new(
|
|
|
|
used_locals: &'a mut IndexVec<Local, usize>,
|
|
|
|
arg_count: usize,
|
|
|
|
tcx: TyCtxt<'tcx>,
|
|
|
|
) -> Self {
|
|
|
|
Self { used_locals, arg_count, tcx, modified: false }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn keep_local(&self, l: Local) -> bool {
|
|
|
|
trace!("keep_local({:?}): count: {:?}", l, self.used_locals[l]);
|
|
|
|
l.as_usize() <= self.arg_count || self.used_locals[l] != 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'tcx> MutVisitor<'tcx> for RemoveStatements<'a, 'tcx> {
|
2019-10-20 15:11:04 -05:00
|
|
|
fn tcx(&self) -> TyCtxt<'tcx> {
|
|
|
|
self.tcx
|
|
|
|
}
|
|
|
|
|
2016-08-15 20:59:50 -05:00
|
|
|
fn visit_basic_block_data(&mut self, block: BasicBlock, data: &mut BasicBlockData<'tcx>) {
|
|
|
|
// Remove unnecessary StorageLive and StorageDead annotations.
|
2020-04-03 19:28:07 -05:00
|
|
|
let mut i = 0usize;
|
|
|
|
data.statements.retain(|stmt| {
|
|
|
|
let keep = match &stmt.kind {
|
|
|
|
StatementKind::StorageLive(l) | StatementKind::StorageDead(l) => {
|
|
|
|
self.keep_local(*l)
|
|
|
|
}
|
|
|
|
StatementKind::Assign(box (place, _)) => self.keep_local(place.local),
|
|
|
|
_ => true,
|
|
|
|
};
|
|
|
|
|
|
|
|
if !keep {
|
|
|
|
trace!("removing statement {:?}", stmt);
|
|
|
|
self.modified = true;
|
|
|
|
|
2020-04-13 20:02:03 -05:00
|
|
|
let mut visitor = StatementDeclMarker::new(self.used_locals, stmt);
|
2020-04-03 19:28:07 -05:00
|
|
|
visitor.visit_statement(stmt, Location { block, statement_index: i });
|
|
|
|
}
|
|
|
|
|
|
|
|
i += 1;
|
|
|
|
|
|
|
|
keep
|
2016-08-15 20:59:50 -05:00
|
|
|
});
|
2020-04-03 19:28:07 -05:00
|
|
|
|
2016-08-15 20:59:50 -05:00
|
|
|
self.super_basic_block_data(block, data);
|
|
|
|
}
|
2020-04-03 19:28:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
struct LocalUpdater<'tcx> {
|
|
|
|
map: IndexVec<Local, Option<Local>>,
|
|
|
|
tcx: TyCtxt<'tcx>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> MutVisitor<'tcx> for LocalUpdater<'tcx> {
|
|
|
|
fn tcx(&self) -> TyCtxt<'tcx> {
|
|
|
|
self.tcx
|
|
|
|
}
|
2019-10-07 15:58:28 -05:00
|
|
|
|
2019-04-24 13:41:43 -05:00
|
|
|
fn visit_local(&mut self, l: &mut Local, _: PlaceContext, _: Location) {
|
2018-07-22 11:23:39 -05:00
|
|
|
*l = self.map[*l].unwrap();
|
2016-08-15 20:59:50 -05:00
|
|
|
}
|
|
|
|
}
|