src/share/vm/c1/c1_InstructionPrinter.cpp

changeset 5914
d13d7aba8c12
parent 4947
acadb114c818
child 5921
ce0cc25bc5e2
     1.1 --- a/src/share/vm/c1/c1_InstructionPrinter.cpp	Wed Oct 09 11:05:17 2013 -0700
     1.2 +++ b/src/share/vm/c1/c1_InstructionPrinter.cpp	Wed Oct 09 16:32:21 2013 +0200
     1.3 @@ -892,6 +892,14 @@
     1.4    if (x->known_holder() != NULL) {
     1.5      output()->print(", ");
     1.6      print_klass(x->known_holder());
     1.7 +    output()->print(" ");
     1.8 +  }
     1.9 +  for (int i = 0; i < x->nb_profiled_args(); i++) {
    1.10 +    if (i > 0) output()->print(", ");
    1.11 +    print_value(x->profiled_arg_at(i));
    1.12 +    if (x->arg_needs_null_check(i)) {
    1.13 +      output()->print(" [NC]");
    1.14 +    }
    1.15    }
    1.16    output()->put(')');
    1.17  }

mercurial