Skip to content

Commit 1397827

Browse files
authored
Rollup merge of #111619 - cjgillot:profile-pass, r=WaffleLapkin
Add timings for MIR passes to profiling report This will help identify which pass is responsible for a regression.
2 parents fa11c9e + addc727 commit 1397827

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

compiler/rustc_middle/src/mir/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ impl<'tcx> HasLocalDecls<'tcx> for Body<'tcx> {
101101
/// pass will be named after the type, and it will consist of a main
102102
/// loop that goes over each available MIR and applies `run_pass`.
103103
pub trait MirPass<'tcx> {
104-
fn name(&self) -> &str {
104+
fn name(&self) -> &'static str {
105105
let name = std::any::type_name::<Self>();
106106
if let Some((_, tail)) = name.rsplit_once(':') { tail } else { name }
107107
}

compiler/rustc_mir_transform/src/dump_mir.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use rustc_session::config::OutputType;
1212
pub struct Marker(pub &'static str);
1313

1414
impl<'tcx> MirPass<'tcx> for Marker {
15-
fn name(&self) -> &str {
15+
fn name(&self) -> &'static str {
1616
self.0
1717
}
1818

compiler/rustc_mir_transform/src/pass_manager.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use crate::{validate, MirPass};
66

77
/// Just like `MirPass`, except it cannot mutate `Body`.
88
pub trait MirLint<'tcx> {
9-
fn name(&self) -> &str {
9+
fn name(&self) -> &'static str {
1010
let name = std::any::type_name::<Self>();
1111
if let Some((_, tail)) = name.rsplit_once(':') { tail } else { name }
1212
}
@@ -26,7 +26,7 @@ impl<'tcx, T> MirPass<'tcx> for Lint<T>
2626
where
2727
T: MirLint<'tcx>,
2828
{
29-
fn name(&self) -> &str {
29+
fn name(&self) -> &'static str {
3030
self.0.name()
3131
}
3232

@@ -49,7 +49,7 @@ impl<'tcx, T> MirPass<'tcx> for WithMinOptLevel<T>
4949
where
5050
T: MirPass<'tcx>,
5151
{
52-
fn name(&self) -> &str {
52+
fn name(&self) -> &'static str {
5353
self.1.name()
5454
}
5555

@@ -121,7 +121,7 @@ fn run_passes_inner<'tcx>(
121121
validate_body(tcx, body, format!("before pass {}", name));
122122
}
123123

124-
pass.run_pass(tcx, body);
124+
tcx.sess.time(name, || pass.run_pass(tcx, body));
125125

126126
if dump_enabled {
127127
dump_mir_for_pass(tcx, body, &name, true);

compiler/rustc_mir_transform/src/simplify.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ pub fn simplify_cfg<'tcx>(tcx: TyCtxt<'tcx>, body: &mut Body<'tcx>) {
7474
}
7575

7676
impl<'tcx> MirPass<'tcx> for SimplifyCfg {
77-
fn name(&self) -> &str {
77+
fn name(&self) -> &'static str {
7878
&self.name()
7979
}
8080

0 commit comments

Comments
 (0)