Skip to content

Commit 36c4c6d

Browse files
committed
Rollup merge of rust-lang#33544 - dotdash:baby_dont_break_me_no_more, r=Aatch
Only break critical edges where actually needed Currently, to prepare for MIR trans, we break _all_ critical edges, although we only actually need to do this for edges originating from a call that gets translated to an invoke instruction in LLVM. This has the unfortunate effect of undoing a bunch of the things that SimplifyCfg has done. A particularly bad case arises when you have a C-like enum with N variants and a derived PartialEq implementation. In that case, the match on the (&lhs, &rhs) tuple gets translated into nested matches with N arms each and a basic block each, resulting in N² basic blocks. SimplifyCfg reduces that to roughly 2*N basic blocks, but breaking the critical edges means that we go back to N². In nickel.rs, there is such an enum with roughly N=800. So we get about 640K basic blocks or 2.5M lines of LLVM IR. LLVM takes a while to reduce that to the final "disr_a == disr_b". So before this patch, we had 2.5M lines of IR with 640K basic blocks, which took about about 3.6s in LLVM to get optimized and translated. After this patch, we get about 650K lines with about 1.6K basic blocks and spent a little less than 0.2s in LLVM. cc rust-lang#33111 r? @Aatch
2 parents d3ec9d4 + 00f6513 commit 36c4c6d

File tree

4 files changed

+113
-119
lines changed

4 files changed

+113
-119
lines changed

src/librustc_driver/driver.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1036,7 +1036,7 @@ pub fn phase_4_translate_to_llvm<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
10361036
passes.push_pass(box mir::transform::no_landing_pads::NoLandingPads);
10371037
passes.push_pass(box mir::transform::remove_dead_blocks::RemoveDeadBlocks);
10381038
passes.push_pass(box mir::transform::erase_regions::EraseRegions);
1039-
passes.push_pass(box mir::transform::break_critical_edges::BreakCriticalEdges);
1039+
passes.push_pass(box mir::transform::break_cleanup_edges::BreakCleanupEdges);
10401040
passes.run_passes(tcx, &mut mir_map);
10411041
});
10421042

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
// Copyright 2016 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::ty::TyCtxt;
12+
use rustc::mir::repr::*;
13+
use rustc::mir::transform::{MirPass, MirSource, Pass};
14+
15+
use rustc_data_structures::bitvec::BitVector;
16+
17+
use pretty;
18+
19+
use traversal;
20+
21+
pub struct BreakCleanupEdges;
22+
23+
/**
24+
* Breaks outgoing critical edges for call terminators in the MIR.
25+
*
26+
* Critical edges are edges that are neither the only edge leaving a
27+
* block, nor the only edge entering one.
28+
*
29+
* When you want something to happen "along" an edge, you can either
30+
* do at the end of the predecessor block, or at the start of the
31+
* successor block. Critical edges have to be broken in order to prevent
32+
* "edge actions" from affecting other edges. We need this for calls that are
33+
* translated to LLVM invoke instructions, because invoke is a block terminator
34+
* in LLVM so we can't insert any code to handle the call's result into the
35+
* block that performs the call.
36+
*
37+
* This function will break those edges by inserting new blocks along them.
38+
*
39+
* NOTE: Simplify CFG will happily undo most of the work this pass does.
40+
*
41+
*/
42+
43+
impl<'tcx> MirPass<'tcx> for BreakCleanupEdges {
44+
fn run_pass<'a>(&mut self, tcx: TyCtxt<'a, 'tcx, 'tcx>, src: MirSource, mir: &mut Mir<'tcx>) {
45+
let mut pred_count = vec![0u32; mir.basic_blocks.len()];
46+
47+
// Build the precedecessor map for the MIR
48+
for (_, data) in traversal::preorder(mir) {
49+
if let Some(ref term) = data.terminator {
50+
for &tgt in term.successors().iter() {
51+
pred_count[tgt.index()] += 1;
52+
}
53+
}
54+
}
55+
56+
let cleanup_map : BitVector = mir.basic_blocks
57+
.iter().map(|bb| bb.is_cleanup).collect();
58+
59+
// We need a place to store the new blocks generated
60+
let mut new_blocks = Vec::new();
61+
62+
let bbs = mir.all_basic_blocks();
63+
let cur_len = mir.basic_blocks.len();
64+
65+
for &bb in &bbs {
66+
let data = mir.basic_block_data_mut(bb);
67+
68+
if let Some(ref mut term) = data.terminator {
69+
if term_is_invoke(term) {
70+
let term_span = term.span;
71+
let term_scope = term.scope;
72+
let succs = term.successors_mut();
73+
for tgt in succs {
74+
let num_preds = pred_count[tgt.index()];
75+
if num_preds > 1 {
76+
// It's a critical edge, break it
77+
let goto = Terminator {
78+
span: term_span,
79+
scope: term_scope,
80+
kind: TerminatorKind::Goto { target: *tgt }
81+
};
82+
let mut data = BasicBlockData::new(Some(goto));
83+
data.is_cleanup = cleanup_map.contains(tgt.index());
84+
85+
// Get the index it will be when inserted into the MIR
86+
let idx = cur_len + new_blocks.len();
87+
new_blocks.push(data);
88+
*tgt = BasicBlock::new(idx);
89+
}
90+
}
91+
}
92+
}
93+
}
94+
95+
pretty::dump_mir(tcx, "break_cleanup_edges", &0, src, mir, None);
96+
debug!("Broke {} N edges", new_blocks.len());
97+
98+
mir.basic_blocks.extend_from_slice(&new_blocks);
99+
}
100+
}
101+
102+
impl Pass for BreakCleanupEdges {}
103+
104+
// Returns true if the terminator is a call that would use an invoke in LLVM.
105+
fn term_is_invoke(term: &Terminator) -> bool {
106+
match term.kind {
107+
TerminatorKind::Call { cleanup: Some(_), .. } |
108+
TerminatorKind::Drop { unwind: Some(_), .. } => true,
109+
_ => false
110+
}
111+
}

src/librustc_mir/transform/break_critical_edges.rs

-117
This file was deleted.

src/librustc_mir/transform/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ pub mod simplify_cfg;
1313
pub mod erase_regions;
1414
pub mod no_landing_pads;
1515
pub mod type_check;
16-
pub mod break_critical_edges;
16+
pub mod break_cleanup_edges;
1717
pub mod promote_consts;
1818
pub mod qualify_consts;

0 commit comments

Comments
 (0)