commit | aee2156e308f3f346ac4df76ba1d33ee9b11be84 | [log] [tgz] |
---|---|---|
author | Nicolas Geoffray <ngeoffray@google.com> | Tue Dec 15 16:39:44 2015 +0000 |
committer | Nicolas Geoffray <ngeoffray@google.com> | Tue Dec 15 16:50:27 2015 +0000 |
tree | 15873ce5421d8a3856a6049c715d61a5136cae20 | |
parent | 3b0ec017185a6d694f5041e79cc7a85d51943cff [diff] [blame] |
Add some dumping when SIGQUIT for the JIT. Change-Id: Iad68bdc8a4ab53e810feb3bc8507b7f42e79b1f7
diff --git a/runtime/runtime.cc b/runtime/runtime.cc index 93ca347..02747d0 100644 --- a/runtime/runtime.cc +++ b/runtime/runtime.cc
@@ -1300,6 +1300,11 @@ GetInternTable()->DumpForSigQuit(os); GetJavaVM()->DumpForSigQuit(os); GetHeap()->DumpForSigQuit(os); + if (GetJit() != nullptr) { + GetJit()->DumpForSigQuit(os); + } else { + os << "Running non JIT\n"; + } TrackedAllocators::Dump(os); os << "\n";