hotspot/src/share/vm/compiler/abstractCompiler.hpp
author neliasso
Tue, 20 Oct 2015 18:07:28 +0200
changeset 33451 0712796e4039
parent 33160 c59f1676d27e
child 33632 038347770a9e
child 33626 3c94db05e903
permissions -rw-r--r--
8137167: JEP165: Compiler Control: Implementation task Summary: Compiler Control JEP Reviewed-by: roland, twisti, zmajo, simonis
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"
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
    29
#include "compiler/compilerDirectives.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    30
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    31
typedef void (*initializer)(void);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    32
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    33
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    34
// Per-compiler statistics
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    35
class CompilerStatistics VALUE_OBJ_CLASS_SPEC {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    36
  friend class VMStructs;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    37
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    38
  class Data VALUE_OBJ_CLASS_SPEC {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    39
    friend class VMStructs;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    40
  public:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    41
    elapsedTimer _time;  // time spent compiling
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    42
    int _bytes;          // number of bytecodes compiled, including inlined bytecodes
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    43
    int _count;          // number of compilations
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    44
    Data() : _bytes(0), _count(0) {}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    45
    void update(elapsedTimer time, int bytes) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    46
      _time.add(time);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    47
      _bytes += bytes;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    48
      _count++;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    49
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    50
    void reset() {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    51
      _time.reset();
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
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    55
 public:
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    56
  Data _standard;  // stats for non-OSR compilations
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    57
  Data _osr;       // stats for OSR compilations
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    58
  int _nmethods_size; //
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    59
  int _nmethods_code_size;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    60
  int bytes_per_second() {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    61
    int bytes = _standard._bytes + _osr._bytes;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    62
    if (bytes == 0) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    63
      return 0;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    64
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    65
    double seconds = _standard._time.seconds() + _osr._time.seconds();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    66
    return seconds == 0.0 ? 0 : (int) (bytes / seconds);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    67
  }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    68
  CompilerStatistics() : _nmethods_size(0), _nmethods_code_size(0) {}
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    69
};
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    70
#endif // INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    71
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
    72
class AbstractCompiler : public CHeapObj<mtCompiler> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
 private:
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    74
  volatile int _num_compiler_threads;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
 protected:
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    77
  volatile int _compiler_state;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // Used for tracking global state of compiler runtime initialization
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    79
  enum { uninitialized, initializing, initialized, failed, shut_down };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    81
  // 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
    82
  // This thread will initialize the compiler runtime.
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
    83
  bool should_perform_init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
22236
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    85
  // The (closed set) of concrete compiler classes.
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    86
  enum Type {
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    87
    none,
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    88
    c1,
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    89
    c2,
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    90
    jvmci,
22236
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    91
    shark
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
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    94
 private:
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    95
  Type _type;
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
    96
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    97
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    98
  CompilerStatistics _stats;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
    99
#endif
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
   100
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
 public:
22236
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
   102
  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
   103
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   104
  // This function determines the compiler thread that will perform the
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   105
  // shutdown of the corresponding compiler runtime.
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   106
  bool should_perform_shutdown();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // Name of this compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  virtual const char* name() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  // Missing feature tests
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  virtual bool supports_native()                 { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  virtual bool supports_osr   ()                 { return true; }
15207
86fd7c602ddf 8005820: Shark: enable JSR292 support
twisti
parents: 13963
diff changeset
   114
  virtual bool can_compile_method(methodHandle method)  { return true; }
22236
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
   115
31962
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   116
  // 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
   117
  // for method 'method'. An intrinsic is available if:
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   118
  //  - the intrinsic is enabled (by using the appropriate command-line flag,
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   119
  //    the command-line compile ommand, or a compiler directive)
31962
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   120
  //  - 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
   121
  //    (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
   122
  //    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
   123
  //
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   124
  // The directive provides the compilation context and includes pre-evaluated values
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   125
  // dependent on VM flags, compile commands, and compiler directives.
31962
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   126
  //
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   127
  // Usually, the compilation context is the caller of the method 'method'.
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   128
  // The only case when for a non-recursive method 'method' the compilation context
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   129
  // is not the caller of the 'method' (but it is the method itself) is
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   130
  // java.lang.ref.Referene::get.
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   131
  // For java.lang.ref.Reference::get, the intrinsic version is used
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   132
  // instead of the compiled version so that the value in the referent
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   133
  // field can be registered by the G1 pre-barrier code. The intrinsified
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   134
  // version of Reference::get also adds a memory barrier to prevent
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   135
  // commoning reads from the referent field across safepoint since GC
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   136
  // can change the referent field's value. See Compile::Compile()
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   137
  // in src/share/vm/opto/compile.cpp or
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   138
  // GraphBuilder::GraphBuilder() in src/share/vm/c1/c1_GraphBuilder.cpp
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   139
  // for more details.
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   140
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   141
  virtual bool is_intrinsic_available(methodHandle method, DirectiveSet* directive) {
32085
d869c505b624 8132457: Unify command-line flags controlling the usage of compiler intrinsics
zmajo
parents: 31962
diff changeset
   142
    return is_intrinsic_supported(method) &&
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   143
           !directive->is_intrinsic_disabled(method) &&
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   144
           !vmIntrinsics::is_disabled_by_flags(method);
31962
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   145
  }
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   146
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   147
  // 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
   148
  // 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
   149
  // 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
   150
  //
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   151
  // 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
   152
  // 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
   153
  // 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
   154
  // to this behavior.
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   155
  virtual bool is_intrinsic_supported(methodHandle method) {
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   156
    return false;
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   157
  }
d05e0a4d1b43 8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents: 22236
diff changeset
   158
22236
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
   159
  // Compiler type queries.
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
   160
  bool is_c1()                                   { return _type == c1; }
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
   161
  bool is_c2()                                   { return _type == c2; }
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
   162
  bool is_jvmci()                                { return _type == jvmci; }
22236
44508442b8da 8029305: add type tag to AbstractCompiler
twisti
parents: 22234
diff changeset
   163
  bool is_shark()                                { return _type == shark; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // Customization
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   166
  virtual void initialize () = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   168
  void set_num_compiler_threads(int num) { _num_compiler_threads = num;  }
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   169
  int num_compiler_threads()             { return _num_compiler_threads; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
20707
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   171
  // Get/set state of compiler objects
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   172
  bool is_initialized()           { return _compiler_state == initialized; }
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   173
  bool is_failed     ()           { return _compiler_state == failed;}
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   174
  void set_state     (int state);
b3b658c6d1f8 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 15207
diff changeset
   175
  void set_shut_down ()           { set_state(shut_down); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // Compilation entry point for methods
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33160
diff changeset
   177
  virtual void compile_method(ciEnv* env, ciMethod* target, int entry_bci, DirectiveSet* directive) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // Print compilation timers and statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  virtual void print_timers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  }
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
   186
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
   187
#if INCLUDE_JVMCI
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
   188
  CompilerStatistics* stats() { return &_stats; }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32085
diff changeset
   189
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
   191
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
   192
#endif // SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP