@@ -17,6 +17,7 @@ use rustc_codegen_ssa::back::write::{
17
17
} ;
18
18
use rustc_codegen_ssa:: traits:: * ;
19
19
use rustc_codegen_ssa:: { CompiledModule , ModuleCodegen } ;
20
+ use rustc_data_structures:: profiling:: SelfProfilerRef ;
20
21
use rustc_data_structures:: small_c_str:: SmallCStr ;
21
22
use rustc_errors:: { FatalError , Handler , Level } ;
22
23
use rustc_fs_util:: { link_or_copy, path_to_c_string} ;
@@ -53,6 +54,7 @@ pub fn write_output_file(
53
54
output : & Path ,
54
55
dwo_output : Option < & Path > ,
55
56
file_type : llvm:: FileType ,
57
+ self_profiler_ref : & SelfProfilerRef ,
56
58
) -> Result < ( ) , FatalError > {
57
59
unsafe {
58
60
let output_c = path_to_c_string ( output) ;
@@ -76,6 +78,19 @@ pub fn write_output_file(
76
78
file_type,
77
79
)
78
80
} ;
81
+
82
+ // Record artifact sizes for self-profiling
83
+ if result == llvm:: LLVMRustResult :: Success {
84
+ let artifact_kind = match file_type {
85
+ llvm:: FileType :: ObjectFile => "object_file" ,
86
+ llvm:: FileType :: AssemblyFile => "assembly_file" ,
87
+ } ;
88
+ record_artifact_size ( self_profiler_ref, artifact_kind, output) ;
89
+ if let Some ( dwo_file) = dwo_output {
90
+ record_artifact_size ( self_profiler_ref, "dwo_file" , dwo_file) ;
91
+ }
92
+ }
93
+
79
94
result. into_result ( ) . map_err ( |( ) | {
80
95
let msg = format ! ( "could not write output to {}" , output. display( ) ) ;
81
96
llvm_err ( handler, & msg)
@@ -752,6 +767,14 @@ pub(crate) unsafe fn codegen(
752
767
let thin = ThinBuffer :: new ( llmod) ;
753
768
let data = thin. data ( ) ;
754
769
770
+ if let Some ( bitcode_filename) = bc_out. file_name ( ) {
771
+ cgcx. prof . artifact_size (
772
+ "llvm_bitcode" ,
773
+ bitcode_filename. to_string_lossy ( ) ,
774
+ data. len ( ) as u64 ,
775
+ ) ;
776
+ }
777
+
755
778
if config. emit_bc || config. emit_obj == EmitObj :: Bitcode {
756
779
let _timer = cgcx. prof . generic_activity_with_arg (
757
780
"LLVM_module_codegen_emit_bitcode" ,
@@ -812,6 +835,11 @@ pub(crate) unsafe fn codegen(
812
835
}
813
836
814
837
let result = llvm:: LLVMRustPrintModule ( llmod, out_c. as_ptr ( ) , demangle_callback) ;
838
+
839
+ if result == llvm:: LLVMRustResult :: Success {
840
+ record_artifact_size ( & cgcx. prof , "llvm_ir" , & out) ;
841
+ }
842
+
815
843
result. into_result ( ) . map_err ( |( ) | {
816
844
let msg = format ! ( "failed to write LLVM IR to {}" , out. display( ) ) ;
817
845
llvm_err ( diag_handler, & msg)
@@ -842,6 +870,7 @@ pub(crate) unsafe fn codegen(
842
870
& path,
843
871
None ,
844
872
llvm:: FileType :: AssemblyFile ,
873
+ & cgcx. prof ,
845
874
)
846
875
} ) ?;
847
876
}
@@ -875,6 +904,7 @@ pub(crate) unsafe fn codegen(
875
904
& obj_out,
876
905
dwo_out,
877
906
llvm:: FileType :: ObjectFile ,
907
+ & cgcx. prof ,
878
908
)
879
909
} ) ?;
880
910
}
@@ -1131,3 +1161,19 @@ fn create_msvc_imps(
1131
1161
symbol_name. starts_with ( b"__llvm_profile_" )
1132
1162
}
1133
1163
}
1164
+
1165
+ fn record_artifact_size (
1166
+ self_profiler_ref : & SelfProfilerRef ,
1167
+ artifact_kind : & ' static str ,
1168
+ path : & Path ,
1169
+ ) {
1170
+ // Don't stat the file if we are not going to record its size.
1171
+ if !self_profiler_ref. enabled ( ) {
1172
+ return ;
1173
+ }
1174
+
1175
+ if let Some ( artifact_name) = path. file_name ( ) {
1176
+ let file_size = std:: fs:: metadata ( path) . map ( |m| m. len ( ) ) . unwrap_or ( 0 ) ;
1177
+ self_profiler_ref. artifact_size ( artifact_kind, artifact_name. to_string_lossy ( ) , file_size) ;
1178
+ }
1179
+ }
0 commit comments