Record object file artifact size in self profile data

This commit is contained in:
bjorn3 2022-01-18 15:24:11 +01:00
parent b91ecc78bf
commit f3b2d37e77

View file

@ -56,6 +56,9 @@ fn emit_module(
let tmp_file = tcx.output_filenames(()).temp_path(OutputType::Object, Some(&name));
let obj = product.object.write().unwrap();
tcx.sess.prof.artifact_size("object_file", name.clone(), obj.len().try_into().unwrap());
if let Err(err) = std::fs::write(&tmp_file, obj) {
tcx.sess.fatal(&format!("error writing object file: {}", err));
}