diff src/share/vm/runtime/java.cpp @ 12962:5ccbab1c69f3

8026251: New type profiling points: parameters to methods Summary: x86 interpreter and c1 type profiling for parameters on method entries Reviewed-by: kvn, twisti
author roland
date Tue, 22 Oct 2013 09:51:47 +0200
parents d13d7aba8c12
children 096c224171c4 49a31fd8b93d
line wrap: on
line diff
--- a/src/share/vm/runtime/java.cpp	Mon Oct 21 17:34:27 2013 -0700
+++ b/src/share/vm/runtime/java.cpp	Tue Oct 22 09:51:47 2013 +0200
@@ -193,6 +193,11 @@
       m->print_invocation_count();
       tty->print_cr("  mdo size: %d bytes", m->method_data()->size_in_bytes());
       tty->cr();
+      // Dump data on parameters if any
+      if (m->method_data() != NULL && m->method_data()->parameters_type_data() != NULL) {
+        tty->fill_to(2);
+        m->method_data()->parameters_type_data()->print_data_on(tty);
+      }
       m->print_codes();
       total_size += m->method_data()->size_in_bytes();
     }