src/share/vm/c1/c1_InstructionPrinter.cpp

changeset 5921
ce0cc25bc5e2
parent 5914
d13d7aba8c12
child 6680
78bbf4d43a14
     1.1 --- a/src/share/vm/c1/c1_InstructionPrinter.cpp	Fri Oct 11 19:51:31 2013 -0700
     1.2 +++ b/src/share/vm/c1/c1_InstructionPrinter.cpp	Sat Oct 12 12:12:59 2013 +0200
     1.3 @@ -904,6 +904,12 @@
     1.4    output()->put(')');
     1.5  }
     1.6  
     1.7 +void InstructionPrinter::do_ProfileReturnType(ProfileReturnType* x) {
     1.8 +  output()->print("profile ret type ");
     1.9 +  print_value(x->ret());
    1.10 +  output()->print(" %s.%s", x->method()->holder()->name()->as_utf8(), x->method()->name()->as_utf8());
    1.11 +  output()->put(')');
    1.12 +}
    1.13  void InstructionPrinter::do_ProfileInvoke(ProfileInvoke* x) {
    1.14    output()->print("profile_invoke ");
    1.15    output()->print(" %s.%s", x->inlinee()->holder()->name()->as_utf8(), x->inlinee()->name()->as_utf8());

mercurial