author | coleenp |
Fri, 09 Mar 2018 20:01:38 -0500 | |
changeset 49373 | 47b5652f2928 |
parent 47687 | fb290fd1f9d4 |
child 51333 | f6641fcf7b7e |
permissions | -rw-r--r-- |
1 | 1 |
/* |
49373
47b5652f2928
8199283: Remove ValueObj class for allocation subclassing for compiler code
coleenp
parents:
47687
diff
changeset
|
2 |
* Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
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 |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
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 |
* |
|
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 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP |
26 |
#define SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP |
|
27 |
||
28 |
#include "ci/compilerInterface.hpp" |
|
42040
70ec5a09a0d5
8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
33638
diff
changeset
|
29 |
#include "compiler/compilerDefinitions.hpp" |
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
30 |
#include "compiler/compilerDirectives.hpp" |
7397 | 31 |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
32 |
typedef void (*initializer)(void); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
33 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
34 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
35 |
// Per-compiler statistics |
49373
47b5652f2928
8199283: Remove ValueObj class for allocation subclassing for compiler code
coleenp
parents:
47687
diff
changeset
|
36 |
class CompilerStatistics { |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
37 |
friend class VMStructs; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
38 |
|
49373
47b5652f2928
8199283: Remove ValueObj class for allocation subclassing for compiler code
coleenp
parents:
47687
diff
changeset
|
39 |
class Data { |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
40 |
friend class VMStructs; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
41 |
public: |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
42 |
elapsedTimer _time; // time spent compiling |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
43 |
int _bytes; // number of bytecodes compiled, including inlined bytecodes |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
44 |
int _count; // number of compilations |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
45 |
Data() : _bytes(0), _count(0) {} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
46 |
void update(elapsedTimer time, int bytes) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
47 |
_time.add(time); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
48 |
_bytes += bytes; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
49 |
_count++; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
50 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
51 |
void reset() { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
52 |
_time.reset(); |
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 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
56 |
public: |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
57 |
Data _standard; // stats for non-OSR compilations |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
58 |
Data _osr; // stats for OSR compilations |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
59 |
int _nmethods_size; // |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
60 |
int _nmethods_code_size; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
61 |
int bytes_per_second() { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
62 |
int bytes = _standard._bytes + _osr._bytes; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
63 |
if (bytes == 0) { |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
64 |
return 0; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
65 |
} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
66 |
double seconds = _standard._time.seconds() + _osr._time.seconds(); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
67 |
return seconds == 0.0 ? 0 : (int) (bytes / seconds); |
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 |
CompilerStatistics() : _nmethods_size(0), _nmethods_code_size(0) {} |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
70 |
}; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
71 |
#endif // INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
72 |
|
13195 | 73 |
class AbstractCompiler : public CHeapObj<mtCompiler> { |
1 | 74 |
private: |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
75 |
volatile int _num_compiler_threads; |
1 | 76 |
|
77 |
protected: |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
78 |
volatile int _compiler_state; |
1 | 79 |
// Used for tracking global state of compiler runtime initialization |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
80 |
enum { uninitialized, initializing, initialized, failed, shut_down }; |
1 | 81 |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
82 |
// 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
|
83 |
// This thread will initialize the compiler runtime. |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
84 |
bool should_perform_init(); |
1 | 85 |
|
22236 | 86 |
private: |
42040
70ec5a09a0d5
8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
33638
diff
changeset
|
87 |
const CompilerType _type; |
22236 | 88 |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
89 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
90 |
CompilerStatistics _stats; |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
91 |
#endif |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
92 |
|
1 | 93 |
public: |
42040
70ec5a09a0d5
8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
33638
diff
changeset
|
94 |
AbstractCompiler(CompilerType type) : _type(type), _compiler_state(uninitialized), _num_compiler_threads(0) {} |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
95 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
96 |
// This function determines the compiler thread that will perform the |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
97 |
// shutdown of the corresponding compiler runtime. |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
98 |
bool should_perform_shutdown(); |
1 | 99 |
|
100 |
// Name of this compiler |
|
101 |
virtual const char* name() = 0; |
|
102 |
||
103 |
// Missing feature tests |
|
104 |
virtual bool supports_native() { return true; } |
|
105 |
virtual bool supports_osr () { return true; } |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
106 |
virtual bool can_compile_method(const methodHandle& method) { return true; } |
22236 | 107 |
|
31962
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
22236
diff
changeset
|
108 |
// 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
|
109 |
// for method 'method'. An intrinsic is available if: |
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
110 |
// - the intrinsic is enabled (by using the appropriate command-line flag, |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
111 |
// 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
|
112 |
// - 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
|
113 |
// (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
|
114 |
// 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
|
115 |
// |
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
116 |
// The directive provides the compilation context and includes pre-evaluated values |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
117 |
// 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
|
118 |
// |
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
119 |
// Usually, the compilation context is the caller of the method 'method'. |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
120 |
// 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
|
121 |
// 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
|
122 |
// java.lang.ref.Referene::get. |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
123 |
// For java.lang.ref.Reference::get, the intrinsic version is used |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
124 |
// instead of the compiled version so that the value in the referent |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
125 |
// field can be registered by the G1 pre-barrier code. The intrinsified |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
126 |
// version of Reference::get also adds a memory barrier to prevent |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
127 |
// commoning reads from the referent field across safepoint since GC |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
128 |
// can change the referent field's value. See Compile::Compile() |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
129 |
// in src/share/vm/opto/compile.cpp or |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
130 |
// GraphBuilder::GraphBuilder() in src/share/vm/c1/c1_GraphBuilder.cpp |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
131 |
// for more details. |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
132 |
|
33626 | 133 |
virtual bool is_intrinsic_available(const methodHandle& method, DirectiveSet* directive) { |
32085
d869c505b624
8132457: Unify command-line flags controlling the usage of compiler intrinsics
zmajo
parents:
31962
diff
changeset
|
134 |
return is_intrinsic_supported(method) && |
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
135 |
!directive->is_intrinsic_disabled(method) && |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
136 |
!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
|
137 |
} |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
22236
diff
changeset
|
138 |
|
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
22236
diff
changeset
|
139 |
// 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
|
140 |
// 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
|
141 |
// 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
|
142 |
// |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
22236
diff
changeset
|
143 |
// 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
|
144 |
// 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
|
145 |
// 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
|
146 |
// to this behavior. |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33160
diff
changeset
|
147 |
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
|
148 |
return false; |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
22236
diff
changeset
|
149 |
} |
d05e0a4d1b43
8130832: Extend the WhiteBox API to provide information about the availability of compiler intrinsics
zmajo
parents:
22236
diff
changeset
|
150 |
|
22236 | 151 |
// Compiler type queries. |
42040
70ec5a09a0d5
8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
33638
diff
changeset
|
152 |
const bool is_c1() { return _type == compiler_c1; } |
70ec5a09a0d5
8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
33638
diff
changeset
|
153 |
const bool is_c2() { return _type == compiler_c2; } |
70ec5a09a0d5
8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
33638
diff
changeset
|
154 |
const bool is_jvmci() { return _type == compiler_jvmci; } |
70ec5a09a0d5
8166377: is_compiled_by_jvmci hot in some profiles - improve nmethod compiler type detection
neliasso
parents:
33638
diff
changeset
|
155 |
const CompilerType type() { return _type; } |
1 | 156 |
|
33632 | 157 |
// Extra tests to identify trivial methods for the tiered compilation policy. |
158 |
virtual bool is_trivial(Method* method) { return false; } |
|
159 |
||
1 | 160 |
// Customization |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
161 |
virtual void initialize () = 0; |
1 | 162 |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
163 |
void set_num_compiler_threads(int num) { _num_compiler_threads = num; } |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
164 |
int num_compiler_threads() { return _num_compiler_threads; } |
1 | 165 |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
166 |
// Get/set state of compiler objects |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
167 |
bool is_initialized() { return _compiler_state == initialized; } |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
168 |
bool is_failed () { return _compiler_state == failed;} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
169 |
void set_state (int state); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
15207
diff
changeset
|
170 |
void set_shut_down () { set_state(shut_down); } |
1 | 171 |
// Compilation entry point for methods |
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33160
diff
changeset
|
172 |
virtual void compile_method(ciEnv* env, ciMethod* target, int entry_bci, DirectiveSet* directive) { |
1 | 173 |
ShouldNotReachHere(); |
174 |
} |
|
175 |
||
176 |
||
177 |
// Print compilation timers and statistics |
|
178 |
virtual void print_timers() { |
|
179 |
ShouldNotReachHere(); |
|
180 |
} |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
181 |
|
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
182 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
183 |
CompilerStatistics* stats() { return &_stats; } |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32085
diff
changeset
|
184 |
#endif |
1 | 185 |
}; |
7397 | 186 |
|
187 |
#endif // SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP |