src/hotspot/share/code/nmethod.cpp
changeset 50729 7755c93d3923
parent 50429 83aec1d357d4
child 50862 350ae1b408da
--- a/src/hotspot/share/code/nmethod.cpp	Fri Jun 22 17:46:58 2018 -0400
+++ b/src/hotspot/share/code/nmethod.cpp	Fri Jun 22 15:58:32 2018 -0700
@@ -2599,6 +2599,16 @@
     st->move_to(column);
     if (sd->bci() == SynchronizationEntryBCI) {
       st->print(";*synchronization entry");
+    } else if (sd->bci() == AfterBci) {
+      st->print(";* method exit (unlocked if synchronized)");
+    } else if (sd->bci() == UnwindBci) {
+      st->print(";* unwind (locked if synchronized)");
+    } else if (sd->bci() == AfterExceptionBci) {
+      st->print(";* unwind (unlocked if synchronized)");
+    } else if (sd->bci() == UnknownBci) {
+      st->print(";* unknown");
+    } else if (sd->bci() == InvalidFrameStateBci) {
+      st->print(";* invalid frame state");
     } else {
       if (sd->method() == NULL) {
         st->print("method is NULL");