about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWesley Wiser <wwiser@gmail.com>2020-05-20 07:40:42 -0400
committerWesley Wiser <wwiser@gmail.com>2020-05-20 07:40:42 -0400
commit8ac1699ea15bf8d6d9bcecec4c340c88cf20c0da (patch)
tree7088ebf2567c626a805dce7170722c63244dd1f1
parent0862458dad90a0d80827e22e3f86e33add6d847c (diff)
downloadrust-8ac1699ea15bf8d6d9bcecec4c340c88cf20c0da.tar.gz
rust-8ac1699ea15bf8d6d9bcecec4c340c88cf20c0da.zip
[self-profling] Record the cgu name when doing codegen for a module
-rw-r--r--src/librustc_codegen_llvm/base.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_codegen_llvm/base.rs b/src/librustc_codegen_llvm/base.rs
index e5f73473b72..3e17a51528e 100644
--- a/src/librustc_codegen_llvm/base.rs
+++ b/src/librustc_codegen_llvm/base.rs
@@ -100,7 +100,7 @@ pub fn compile_codegen_unit(
     tcx: TyCtxt<'tcx>,
     cgu_name: Symbol,
 ) -> (ModuleCodegen<ModuleLlvm>, u64) {
-    let prof_timer = tcx.prof.generic_activity("codegen_module");
+    let prof_timer = tcx.prof.generic_activity_with_arg("codegen_module", cgu_name.to_string());
     let start_time = Instant::now();
 
     let dep_node = tcx.codegen_unit(cgu_name).codegen_dep_node(tcx);