diff options
Diffstat (limited to 'runtime/runtime.cc')
| -rw-r--r-- | runtime/runtime.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/runtime.cc b/runtime/runtime.cc index c4694ee291..1101acdf61 100644 --- a/runtime/runtime.cc +++ b/runtime/runtime.cc @@ -1881,6 +1881,9 @@ void Runtime::CreateJit() { jit_->CreateInstrumentationCache(jit_options_->GetCompileThreshold(), jit_options_->GetWarmupThreshold()); jit_->CreateThreadPool(); + + // Notify native debugger about the classes already loaded before the creation of the jit. + jit_->DumpTypeInfoForLoadedTypes(GetClassLinker()); } else { LOG(WARNING) << "Failed to create JIT " << error_msg; } |