src/hotspot/share/compiler/disassembler.cpp
changeset 54669 ad45b3802d4e
parent 53657 3954d70e1c50
child 54786 ebf733a324d4
equal deleted inserted replaced
54668:0bda2308eded 54669:ad45b3802d4e
     1 /*
     1 /*
     2  * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2008, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
   670   env.output()->print(".");
   670   env.output()->print(".");
   671   nm->method()->name()->print_symbol_on(env.output());
   671   nm->method()->name()->print_symbol_on(env.output());
   672   nm->method()->signature()->print_symbol_on(env.output());
   672   nm->method()->signature()->print_symbol_on(env.output());
   673 #if INCLUDE_JVMCI
   673 #if INCLUDE_JVMCI
   674   {
   674   {
   675     char buffer[O_BUFLEN];
   675     const char* jvmciName = nm->jvmci_name();
   676     char* jvmciName = nm->jvmci_installed_code_name(buffer, O_BUFLEN);
       
   677     if (jvmciName != NULL) {
   676     if (jvmciName != NULL) {
   678       env.output()->print(" (%s)", jvmciName);
   677       env.output()->print(" (%s)", jvmciName);
   679     }
   678     }
   680   }
   679   }
   681 #endif
   680 #endif