diff options
| author | 2016-02-25 13:27:47 +0000 | |
|---|---|---|
| committer | 2016-02-25 13:27:47 +0000 | |
| commit | fcdd72941810f03460a8efca0c6255439be80c35 (patch) | |
| tree | ce279d446fd5fa4e9dd1e42b53444e991b90ae2f /runtime/jit/jit.cc | |
| parent | 1470073c3a9ce17a0f7d3167345746d0b8d2202b (diff) | |
Dump the number of OSR compiled code.
Change-Id: I20efc80e8556da8220dab92c3a7947f883d48cf8
Diffstat (limited to 'runtime/jit/jit.cc')
| -rw-r--r-- | runtime/jit/jit.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/jit/jit.cc b/runtime/jit/jit.cc index bdc7ee2428..cdf09bf51c 100644 --- a/runtime/jit/jit.cc +++ b/runtime/jit/jit.cc @@ -63,7 +63,8 @@ void Jit::DumpInfo(std::ostream& os) { << "JIT data cache size=" << PrettySize(code_cache_->DataCacheSize()) << "\n" << "JIT current capacity=" << PrettySize(code_cache_->GetCurrentCapacity()) << "\n" << "JIT number of compiled code=" << code_cache_->NumberOfCompiledCode() << "\n" - << "JIT total number of compilations=" << code_cache_->NumberOfCompilations() << "\n"; + << "JIT total number of compilations=" << code_cache_->NumberOfCompilations() << "\n" + << "JIT total number of osr compilations=" << code_cache_->NumberOfOsrCompilations() << "\n"; cumulative_timings_.Dump(os); } |