src/hotspot/share/runtime/frame.cpp
changeset 51529 a716460217ed
parent 50015 d0a350777bd1
child 53547 9d1a788dea3d
--- 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()));
     }