hotspot/src/share/vm/c1/c1_InstructionPrinter.cpp
changeset 20702 bbe0fcde6e13
parent 17011 def8879c5b81
child 20709 034be898bf04
--- a/hotspot/src/share/vm/c1/c1_InstructionPrinter.cpp	Wed Oct 09 11:05:17 2013 -0700
+++ b/hotspot/src/share/vm/c1/c1_InstructionPrinter.cpp	Wed Oct 09 16:32:21 2013 +0200
@@ -892,6 +892,14 @@
   if (x->known_holder() != NULL) {
     output()->print(", ");
     print_klass(x->known_holder());
+    output()->print(" ");
+  }
+  for (int i = 0; i < x->nb_profiled_args(); i++) {
+    if (i > 0) output()->print(", ");
+    print_value(x->profiled_arg_at(i));
+    if (x->arg_needs_null_check(i)) {
+      output()->print(" [NC]");
+    }
   }
   output()->put(')');
 }