Add some debug logging for timing in module compiles (#3417)

* Add some debug logging for timing in module compiles

This is sometimes helpful when debugging slow compiles from fuzz bugs or
similar.

* Fix total duration calculation to not double-count
This commit is contained in:
Alex Crichton
2021-10-11 12:50:15 -05:00
committed by GitHub
parent 3d8253beb5
commit 713ce07d35
4 changed files with 13 additions and 0 deletions

View File

@@ -194,6 +194,10 @@ impl wasmtime_environ::Compiler for Compiler {
None
};
let timing = cranelift_codegen::timing::take_current();
log::debug!("{:?} translated in {:?}", func_index, timing.total());
log::trace!("{:?} timing info\n{}", func_index, timing);
let length = u32::try_from(code_buf.len()).unwrap();
Ok(Box::new(CompiledFunction {
body: code_buf,