Skip to content

Commit 4db3d12

Browse files
committedJul 29, 2024
Auto merge of #128265 - DianQK:instsimplify-before-inline, r=saethlin
Perform instsimplify before inline to eliminate some trivial calls I am currently working on #128081. In the current pipeline, we can get the following clone statements ([godbolt](https://rust.godbolt.org/z/931316fhP)): ``` bb0: { StorageLive(_2); _2 = ((*_1).0: i32); StorageLive(_3); _3 = ((*_1).1: u64); _0 = Foo { a: move _2, b: move _3 }; StorageDead(_3); StorageDead(_2); return; } ``` Analyzing such statements will be simple and fast. We don't need to consider branches or some interfering statements. However, this requires us to run `InstSimplify`, `ReferencePropagation`, and `SimplifyCFG` at least once. I can introduce a new pass, but I think the best place for it would be within `InstSimplify`. I put `InstSimplify` before `Inline`, which takes some of the burden away from `Inline`. r? `@saethlin`
2 parents 56c698c + ae681c9 commit 4db3d12

File tree

83 files changed

+226
-182
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+226
-182
lines changed
 

‎compiler/rustc_mir_transform/src/instsimplify.rs

+17-1
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,25 @@ use rustc_target::spec::abi::Abi;
1313
use crate::simplify::simplify_duplicate_switch_targets;
1414
use crate::take_array;
1515

16-
pub struct InstSimplify;
16+
pub enum InstSimplify {
17+
BeforeInline,
18+
AfterSimplifyCfg,
19+
}
20+
21+
impl InstSimplify {
22+
pub fn name(&self) -> &'static str {
23+
match self {
24+
InstSimplify::BeforeInline => "InstSimplify-before-inline",
25+
InstSimplify::AfterSimplifyCfg => "InstSimplify-after-simplifycfg",
26+
}
27+
}
28+
}
1729

1830
impl<'tcx> MirPass<'tcx> for InstSimplify {
31+
fn name(&self) -> &'static str {
32+
self.name()
33+
}
34+
1935
fn is_enabled(&self, sess: &rustc_session::Session) -> bool {
2036
sess.mir_opt_level() > 0
2137
}

‎compiler/rustc_mir_transform/src/lib.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -571,6 +571,8 @@ fn run_optimization_passes<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
571571
// Has to be done before inlining, otherwise actual call will be almost always inlined.
572572
// Also simple, so can just do first
573573
&lower_slice_len::LowerSliceLenCalls,
574+
// Perform instsimplify before inline to eliminate some trivial calls (like clone shims).
575+
&instsimplify::InstSimplify::BeforeInline,
574576
// Perform inlining, which may add a lot of code.
575577
&inline::Inline,
576578
// Code from other crates may have storage markers, so this needs to happen after inlining.
@@ -590,7 +592,8 @@ fn run_optimization_passes<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
590592
&match_branches::MatchBranchSimplification,
591593
// inst combine is after MatchBranchSimplification to clean up Ne(_1, false)
592594
&multiple_return_terminators::MultipleReturnTerminators,
593-
&instsimplify::InstSimplify,
595+
// After simplifycfg, it allows us to discover new opportunities for peephole optimizations.
596+
&instsimplify::InstSimplify::AfterSimplifyCfg,
594597
&simplify::SimplifyLocals::BeforeConstProp,
595598
&dead_store_elimination::DeadStoreElimination::Initial,
596599
&gvn::GVN,

0 commit comments

Comments
 (0)
Please sign in to comment.