8209911: More blob types in hs_err printout
authorshade
Sat, 25 Aug 2018 14:23:21 +0200
changeset 51529 a716460217ed
parent 51528 2418b305aa01
child 51530 1f0b605bdc28
8209911: More blob types in hs_err printout Reviewed-by: simonis, kvn
src/hotspot/share/runtime/frame.cpp
--- a/src/hotspot/share/runtime/frame.cpp	Fri Aug 24 18:56:41 2018 -0700
+++ b/src/hotspot/share/runtime/frame.cpp	Sat Aug 25 14:23:21 2018 +0200
@@ -721,6 +721,14 @@
       st->print("v  ~ExceptionBlob");
     } else if (_cb->is_safepoint_stub()) {
       st->print("v  ~SafepointBlob");
+    } else if (_cb->is_adapter_blob()) {
+      st->print("v  ~AdapterBlob");
+    } else if (_cb->is_vtable_blob()) {
+      st->print("v  ~VtableBlob");
+    } else if (_cb->is_method_handles_adapter_blob()) {
+      st->print("v  ~MethodHandlesAdapterBlob");
+    } else if (_cb->is_uncommon_trap_stub()) {
+      st->print("v  ~UncommonTrapBlob");
     } else {
       st->print("v  blob " PTR_FORMAT, p2i(pc()));
     }