hotspot/src/share/vm/compiler/abstractCompiler.hpp
author coleenp
Fri, 23 Oct 2015 16:48:38 -0400
changeset 33593 60764a78fa5c
parent 33160 c59f1676d27e
child 33626 3c94db05e903
permissions -rw-r--r--
8140274: methodHandles and constantPoolHandles should be passed as const references Summary: modified code to use const reference parameters Reviewed-by: sspitsyn, twisti
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
     2
 * Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    25
#ifndef SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    26
#define SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    28
#include "ci/compilerInterface.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    29
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    30
typedef void (*initializer)(void);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    31
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    32
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    33
// Per-compiler statistics
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    34
class CompilerStatistics VALUE_OBJ_CLASS_SPEC {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    35
  friend class VMStructs;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    36
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    37
  class Data VALUE_OBJ_CLASS_SPEC {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    38
    friend class VMStructs;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    39
  public:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    40
    elapsedTimer _time;  // time spent compiling
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    41
    int _bytes;          // number of bytecodes compiled, including inlined bytecodes
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    42
    int _count;          // number of compilations
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    43
    Data() : _bytes(0), _count(0) {}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    44
    void update(elapsedTimer time, int bytes) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    45
      _time.add(time);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    46
      _bytes += bytes;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    47
      _count++;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    48
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    49
    void reset() {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    50
      _time.reset();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    51
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    52
  };
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    53
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    54
 public:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    55
  Data _standard;  // stats for non-OSR compilations
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    56
  Data _osr;       // stats for OSR compilations
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    57
  int _nmethods_size; //
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    58
  int _nmethods_code_size;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    59
  int bytes_per_second() {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    60
    int bytes = _standard._bytes + _osr._bytes;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    61
    if (bytes == 0) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    62
      return 0;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    63
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    64
    double seconds = _standard._time.seconds() + _osr._time.seconds();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    65
    return seconds == 0.0 ? 0 : (int) (bytes / seconds);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    66
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    67
  CompilerStatistics() : _nmethods_size(0), _nmethods_code_size(0) {}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    68
};
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    69
#endif // INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    70
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
    71
class AbstractCompiler : public CHeapObj<mtCompiler> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
 private:
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    73
  volatile int _num_compiler_threads;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
 protected:
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    76
  volatile int _compiler_state;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // Used for tracking global state of compiler runtime initialization
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    78
  enum { uninitialized, initializing, initialized, failed, shut_down };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    80
  // This method returns true for the first compiler thread that reaches that methods.
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    81
  // This thread will initialize the compiler runtime.
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    82
  bool should_perform_init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
22236
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    84
  // The (closed set) of concrete compiler classes.
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    85
  enum Type {
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    86
    none,
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    87
    c1,
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    88
    c2,
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    89
    jvmci,
22236
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    90
    shark
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    91
  };
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    92
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    93
 private:
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    94
  Type _type;
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    95
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    96
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    97
  CompilerStatistics _stats;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    98
#endif
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    99
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
 public:
22236
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
   101
  AbstractCompiler(Type type) : _type(type), _compiler_state(uninitialized), _num_compiler_threads(0) {}
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   102
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   103
  // This function determines the compiler thread that will perform the
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   104
  // shutdown of the corresponding compiler runtime.
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   105
  bool should_perform_shutdown();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // Name of this compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  virtual const char* name() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // Missing feature tests
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  virtual bool supports_native()                 { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  virtual bool supports_osr   ()                 { return true; }
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   113
  virtual bool can_compile_method(const methodHandle& method)  { return true; }
22236
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
   114
31962
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   115
  // Determine if the current compiler provides an intrinsic
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   116
  // for method 'method'. An intrinsic is available if:
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   117
  //  - the intrinsic is enabled (by using the appropriate command-line flag) and
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   118
  //  - the platform on which the VM is running supports the intrinsic
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   119
  //    (i.e., the platform provides the instructions necessary for the compiler
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   120
  //    to generate the intrinsic code).
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   121
  //
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   122
  // The second parameter, 'compilation_context', is needed to implement functionality
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   123
  // related to the DisableIntrinsic command-line flag. The DisableIntrinsic flag can
32085
d869c505b624 8132457: Unify command-line flags controlling the usage of compiler intrinsics
zmajo
parents: 31962
diff changeset
   124
  // be used to prohibit the compilers to use an intrinsic. There are three ways to
d869c505b624 8132457: Unify command-line flags controlling the usage of compiler intrinsics
zmajo
parents: 31962
diff changeset
   125
  // disable an intrinsic using the DisableIntrinsic flag:
31962
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   126
  //
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   127
  // (1) -XX:DisableIntrinsic=_hashCode,_getClass
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   128
  //     Disables intrinsification of _hashCode and _getClass globally
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   129
  //     (i.e., the intrinsified version the methods will not be used at all).
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   130
  // (2) -XX:CompileCommand=option,aClass::aMethod,ccstr,DisableIntrinsic,_hashCode
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   131
  //     Disables intrinsification of _hashCode if it is called from
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   132
  //     aClass::aMethod (but not for any other call site of _hashCode)
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   133
  // (3) -XX:CompileCommand=option,java.lang.ref.Reference::get,ccstr,DisableIntrinsic,_Reference_get
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   134
  //     Some methods are not compiled by C2. Instead, the C2 compiler
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   135
  //     returns directly the intrinsified version of these methods.
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   136
  //     The command above forces C2 to compile _Reference_get, but
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   137
  //     allows using the intrinsified version of _Reference_get at all
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   138
  //     other call sites.
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   139
  //
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   140
  // From the modes above, (1) disable intrinsics globally, (2) and (3)
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   141
  // disable intrinsics on a per-method basis. In cases (2) and (3) the
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   142
  // compilation context is aClass::aMethod and java.lang.ref.Reference::get,
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   143
  // respectively.
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   144
  virtual bool is_intrinsic_available(const methodHandle& method, const methodHandle& compilation_context) {
32085
d869c505b624 8132457: Unify command-line flags controlling the usage of compiler intrinsics
zmajo
parents: 31962
diff changeset
   145
    return is_intrinsic_supported(method) &&
d869c505b624 8132457: Unify command-line flags controlling the usage of compiler intrinsics
zmajo
parents: 31962
diff changeset
   146
           !vmIntrinsics::is_disabled_by_flags(method, compilation_context);
31962
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   147
  }
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   148
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   149
  // Determines if an intrinsic is supported by the compiler, that is,
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   150
  // the compiler provides the instructions necessary to generate
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   151
  // the intrinsic code for method 'method'.
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   152
  //
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   153
  // The 'is_intrinsic_supported' method is a white list, that is,
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   154
  // by default no intrinsics are supported by a compiler except
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   155
  // the ones listed in the method. Overriding methods should conform
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   156
  // to this behavior.
33593
60764a78fa5c 8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents: 33160
diff changeset
   157
  virtual bool is_intrinsic_supported(const methodHandle& method) {
31962
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   158
    return false;
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   159
  }
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   160
22236
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
   161
  // Compiler type queries.
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
   162
  bool is_c1()                                   { return _type == c1; }
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
   163
  bool is_c2()                                   { return _type == c2; }
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
   164
  bool is_jvmci()                                { return _type == jvmci; }
22236
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
   165
  bool is_shark()                                { return _type == shark; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // Customization
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   168
  virtual void initialize () = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   170
  void set_num_compiler_threads(int num) { _num_compiler_threads = num;  }
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   171
  int num_compiler_threads()             { return _num_compiler_threads; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   173
  // Get/set state of compiler objects
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   174
  bool is_initialized()           { return _compiler_state == initialized; }
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   175
  bool is_failed     ()           { return _compiler_state == failed;}
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   176
  void set_state     (int state);
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   177
  void set_shut_down ()           { set_state(shut_down); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // Compilation entry point for methods
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   179
  virtual void compile_method(ciEnv* env, ciMethod* target, int entry_bci) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // Print compilation timers and statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  virtual void print_timers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  }
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
   188
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
   189
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
   190
  CompilerStatistics* stats() { return &_stats; }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
   191
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
   193
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
   194
#endif // SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP