--- 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()));
}