< prev index next >

src/hotspot/share/runtime/rframe.cpp

Print this page

        

@@ -158,10 +158,11 @@
 #if COMPILER2_OR_JVMCI
   int cnt = top_method()->interpreter_invocation_count();
 #else
   int cnt = top_method()->invocation_count();
 #endif
+  ResourceMark rm;
   tty->print("%3d %s ", _num, is_interpreted() ? "I" : "C");
   top_method()->print_short_name(tty);
   tty->print_cr(": inv=%5d(%d) cst=%4d", _invocations, cnt, cost());
 #endif
 }
< prev index next >