< prev index next >

src/hotspot/share/code/codeBlob.cpp

Print this page
rev 52710 : Upstream/backport Shenandoah to JDK11u


  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "jvm.h"
  27 #include "code/codeBlob.hpp"
  28 #include "code/codeCache.hpp"
  29 #include "code/icBuffer.hpp"
  30 #include "code/relocInfo.hpp"
  31 #include "code/vtableStubs.hpp"
  32 #include "compiler/disassembler.hpp"
  33 #include "interpreter/bytecode.hpp"

  34 #include "memory/allocation.inline.hpp"
  35 #include "memory/heap.hpp"
  36 #include "memory/resourceArea.hpp"
  37 #include "oops/oop.inline.hpp"
  38 #include "prims/forte.hpp"
  39 #include "runtime/handles.inline.hpp"
  40 #include "runtime/interfaceSupport.inline.hpp"
  41 #include "runtime/mutexLocker.hpp"
  42 #include "runtime/safepoint.hpp"
  43 #include "runtime/sharedRuntime.hpp"
  44 #include "runtime/vframe.hpp"
  45 #include "services/memoryService.hpp"
  46 #include "utilities/align.hpp"
  47 #ifdef COMPILER1
  48 #include "c1/c1_Runtime1.hpp"
  49 #endif
  50 
  51 const char* CodeBlob::compiler_name() const {
  52   return compilertype2name(_type);
  53 }




  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "jvm.h"
  27 #include "code/codeBlob.hpp"
  28 #include "code/codeCache.hpp"
  29 #include "code/icBuffer.hpp"
  30 #include "code/relocInfo.hpp"
  31 #include "code/vtableStubs.hpp"
  32 #include "compiler/disassembler.hpp"
  33 #include "interpreter/bytecode.hpp"
  34 #include "interpreter/interpreter.hpp"
  35 #include "memory/allocation.inline.hpp"
  36 #include "memory/heap.hpp"
  37 #include "memory/resourceArea.hpp"
  38 #include "oops/oop.inline.hpp"
  39 #include "prims/forte.hpp"
  40 #include "runtime/handles.inline.hpp"
  41 #include "runtime/interfaceSupport.inline.hpp"
  42 #include "runtime/mutexLocker.hpp"
  43 #include "runtime/safepoint.hpp"
  44 #include "runtime/sharedRuntime.hpp"
  45 #include "runtime/vframe.hpp"
  46 #include "services/memoryService.hpp"
  47 #include "utilities/align.hpp"
  48 #ifdef COMPILER1
  49 #include "c1/c1_Runtime1.hpp"
  50 #endif
  51 
  52 const char* CodeBlob::compiler_name() const {
  53   return compilertype2name(_type);
  54 }


< prev index next >