author | simonis |
Thu, 03 Mar 2016 16:21:16 +0100 | |
changeset 36597 | ee256e343585 |
parent 35845 | 30025047885d |
child 38218 | f5ba1dea04eb |
permissions | -rw-r--r-- |
1 | 1 |
/* |
36597
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
35845
diff
changeset
|
2 |
* Copyright (c) 1999, 2016, 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:
5402
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5402
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:
5402
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_COMPILER_COMPILEBROKER_HPP |
26 |
#define SHARE_VM_COMPILER_COMPILEBROKER_HPP |
|
27 |
||
28 |
#include "ci/compilerInterface.hpp" |
|
29 |
#include "compiler/abstractCompiler.hpp" |
|
32582
56619bb8bcaa
8135067: Preparatory refactorings for compiler control
neliasso
parents:
31981
diff
changeset
|
30 |
#include "compiler/compileTask.hpp" |
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33168
diff
changeset
|
31 |
#include "compiler/compilerDirectives.hpp" |
7397 | 32 |
#include "runtime/perfData.hpp" |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32582
diff
changeset
|
33 |
#include "trace/tracing.hpp" |
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33168
diff
changeset
|
34 |
#include "utilities/stack.hpp" |
35845
30025047885d
8148507: [JVMCI] mitigate deadlocks related to JVMCI compiler under -Xbatch
dnsimon
parents:
35825
diff
changeset
|
35 |
#if INCLUDE_JVMCI |
30025047885d
8148507: [JVMCI] mitigate deadlocks related to JVMCI compiler under -Xbatch
dnsimon
parents:
35825
diff
changeset
|
36 |
#include "jvmci/jvmciCompiler.hpp" |
30025047885d
8148507: [JVMCI] mitigate deadlocks related to JVMCI compiler under -Xbatch
dnsimon
parents:
35825
diff
changeset
|
37 |
#endif |
7397 | 38 |
|
1 | 39 |
class nmethod; |
40 |
class nmethodLocker; |
|
41 |
||
42 |
// CompilerCounters |
|
43 |
// |
|
44 |
// Per Compiler Performance Counters. |
|
45 |
// |
|
13195 | 46 |
class CompilerCounters : public CHeapObj<mtCompiler> { |
1 | 47 |
|
48 |
public: |
|
49 |
enum { |
|
50 |
cmname_buffer_length = 160 |
|
51 |
}; |
|
52 |
||
53 |
private: |
|
54 |
||
55 |
char _current_method[cmname_buffer_length]; |
|
56 |
int _compile_type; |
|
57 |
||
58 |
public: |
|
33168
20f107826ae8
8134607: Remove per-compiler performance counters
redestad
parents:
33160
diff
changeset
|
59 |
CompilerCounters(); |
1 | 60 |
|
61 |
// these methods should be called in a thread safe context |
|
62 |
||
63 |
void set_current_method(const char* method) { |
|
30281 | 64 |
strncpy(_current_method, method, (size_t)cmname_buffer_length-1); |
65 |
_current_method[cmname_buffer_length-1] = '\0'; |
|
1 | 66 |
} |
67 |
||
68 |
char* current_method() { return _current_method; } |
|
69 |
||
70 |
void set_compile_type(int compile_type) { |
|
71 |
_compile_type = compile_type; |
|
72 |
} |
|
73 |
||
74 |
int compile_type() { return _compile_type; } |
|
75 |
||
76 |
}; |
|
77 |
||
78 |
// CompileQueue |
|
79 |
// |
|
80 |
// A list of CompileTasks. |
|
13195 | 81 |
class CompileQueue : public CHeapObj<mtCompiler> { |
1 | 82 |
private: |
83 |
const char* _name; |
|
84 |
||
85 |
CompileTask* _first; |
|
86 |
CompileTask* _last; |
|
87 |
||
24443
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
88 |
CompileTask* _first_stale; |
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
89 |
|
6453 | 90 |
int _size; |
24443
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
91 |
|
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
92 |
void purge_stale_tasks(); |
1 | 93 |
public: |
27696
c43940b3cf78
8061256: com/sun/management/DiagnosticCommandMBean/DcmdMBeanPermissionsTest.java timed out
neliasso
parents:
27464
diff
changeset
|
94 |
CompileQueue(const char* name) { |
1 | 95 |
_name = name; |
96 |
_first = NULL; |
|
97 |
_last = NULL; |
|
6453 | 98 |
_size = 0; |
24443
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
99 |
_first_stale = NULL; |
1 | 100 |
} |
101 |
||
102 |
const char* name() const { return _name; } |
|
103 |
||
104 |
void add(CompileTask* task); |
|
6453 | 105 |
void remove(CompileTask* task); |
24443
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
106 |
void remove_and_mark_stale(CompileTask* task); |
6453 | 107 |
CompileTask* first() { return _first; } |
108 |
CompileTask* last() { return _last; } |
|
1 | 109 |
|
110 |
CompileTask* get(); |
|
111 |
||
112 |
bool is_empty() const { return _first == NULL; } |
|
6453 | 113 |
int size() const { return _size; } |
1 | 114 |
|
24443
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
115 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
116 |
// Redefine Classes support |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
117 |
void mark_on_stack(); |
24321
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
118 |
void free_all(); |
26587 | 119 |
void print_tty(); |
120 |
void print(outputStream* st = tty); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
121 |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
122 |
~CompileQueue() { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
123 |
assert (is_empty(), " Compile Queue must be empty"); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
124 |
} |
1 | 125 |
}; |
126 |
||
6453 | 127 |
// CompileTaskWrapper |
128 |
// |
|
129 |
// Assign this task to the current thread. Deallocate the task |
|
130 |
// when the compilation is complete. |
|
131 |
class CompileTaskWrapper : StackObj { |
|
132 |
public: |
|
133 |
CompileTaskWrapper(CompileTask* task); |
|
134 |
~CompileTaskWrapper(); |
|
135 |
}; |
|
136 |
||
1 | 137 |
// Compilation |
138 |
// |
|
139 |
// The broker for all compilation requests. |
|
140 |
class CompileBroker: AllStatic { |
|
141 |
friend class Threads; |
|
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33168
diff
changeset
|
142 |
friend class CompileTaskWrapper; |
1 | 143 |
|
144 |
public: |
|
145 |
enum { |
|
146 |
name_buffer_length = 100 |
|
147 |
}; |
|
148 |
||
149 |
// Compile type Information for print_last_compile() and CompilerCounters |
|
150 |
enum { no_compile, normal_compile, osr_compile, native_compile }; |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33168
diff
changeset
|
151 |
static int assign_compile_id (const methodHandle& method, int osr_bci); |
22247 | 152 |
|
1 | 153 |
|
154 |
private: |
|
155 |
static bool _initialized; |
|
156 |
static volatile bool _should_block; |
|
157 |
||
4750 | 158 |
// This flag can be used to stop compilation or turn it back on |
159 |
static volatile jint _should_compile_new_jobs; |
|
160 |
||
1 | 161 |
// The installed compiler(s) |
162 |
static AbstractCompiler* _compilers[2]; |
|
163 |
||
164 |
// These counters are used for assigning id's to each compilation |
|
22247 | 165 |
static volatile jint _compilation_id; |
166 |
static volatile jint _osr_compilation_id; |
|
1 | 167 |
|
168 |
static int _last_compile_type; |
|
169 |
static int _last_compile_level; |
|
170 |
static char _last_method_compiled[name_buffer_length]; |
|
171 |
||
24321
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
172 |
static CompileQueue* _c2_compile_queue; |
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
173 |
static CompileQueue* _c1_compile_queue; |
1 | 174 |
|
175 |
// performance counters |
|
176 |
static PerfCounter* _perf_total_compilation; |
|
177 |
static PerfCounter* _perf_native_compilation; |
|
178 |
static PerfCounter* _perf_osr_compilation; |
|
179 |
static PerfCounter* _perf_standard_compilation; |
|
180 |
||
181 |
static PerfCounter* _perf_total_bailout_count; |
|
182 |
static PerfCounter* _perf_total_invalidated_count; |
|
183 |
static PerfCounter* _perf_total_compile_count; |
|
184 |
static PerfCounter* _perf_total_native_compile_count; |
|
185 |
static PerfCounter* _perf_total_osr_compile_count; |
|
186 |
static PerfCounter* _perf_total_standard_compile_count; |
|
187 |
||
188 |
static PerfCounter* _perf_sum_osr_bytes_compiled; |
|
189 |
static PerfCounter* _perf_sum_standard_bytes_compiled; |
|
190 |
static PerfCounter* _perf_sum_nmethod_size; |
|
191 |
static PerfCounter* _perf_sum_nmethod_code_size; |
|
192 |
||
193 |
static PerfStringVariable* _perf_last_method; |
|
194 |
static PerfStringVariable* _perf_last_failed_method; |
|
195 |
static PerfStringVariable* _perf_last_invalidated_method; |
|
196 |
static PerfVariable* _perf_last_compile_type; |
|
197 |
static PerfVariable* _perf_last_compile_size; |
|
198 |
static PerfVariable* _perf_last_failed_type; |
|
199 |
static PerfVariable* _perf_last_invalidated_type; |
|
200 |
||
201 |
// Timers and counters for generating statistics |
|
202 |
static elapsedTimer _t_total_compilation; |
|
203 |
static elapsedTimer _t_osr_compilation; |
|
204 |
static elapsedTimer _t_standard_compilation; |
|
26913 | 205 |
static elapsedTimer _t_invalidated_compilation; |
206 |
static elapsedTimer _t_bailedout_compilation; |
|
1 | 207 |
|
18025 | 208 |
static int _total_compile_count; |
1 | 209 |
static int _total_bailout_count; |
210 |
static int _total_invalidated_count; |
|
211 |
static int _total_native_compile_count; |
|
212 |
static int _total_osr_compile_count; |
|
213 |
static int _total_standard_compile_count; |
|
214 |
static int _sum_osr_bytes_compiled; |
|
215 |
static int _sum_standard_bytes_compiled; |
|
216 |
static int _sum_nmethod_size; |
|
217 |
static int _sum_nmethod_code_size; |
|
18025 | 218 |
static long _peak_compilation_time; |
1 | 219 |
|
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20707
diff
changeset
|
220 |
static volatile jint _print_compilation_warning; |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20707
diff
changeset
|
221 |
|
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
26913
diff
changeset
|
222 |
static JavaThread* make_thread(const char* name, CompileQueue* queue, CompilerCounters* counters, AbstractCompiler* comp, bool compiler_thread, TRAPS); |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
26913
diff
changeset
|
223 |
static void init_compiler_sweeper_threads(int c1_compiler_count, int c2_compiler_count); |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33168
diff
changeset
|
224 |
static bool compilation_is_complete (const methodHandle& method, int osr_bci, int comp_level); |
36597
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
35845
diff
changeset
|
225 |
static bool compilation_is_prohibited(const methodHandle& method, int osr_bci, int comp_level, bool excluded); |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33168
diff
changeset
|
226 |
static void preload_classes (const methodHandle& method, TRAPS); |
1 | 227 |
|
33626 | 228 |
static CompileTask* create_compile_task(CompileQueue* queue, |
229 |
int compile_id, |
|
230 |
const methodHandle& method, |
|
231 |
int osr_bci, |
|
232 |
int comp_level, |
|
233 |
const methodHandle& hot_method, |
|
234 |
int hot_count, |
|
235 |
const char* comment, |
|
236 |
bool blocking); |
|
1 | 237 |
static void wait_for_completion(CompileTask* task); |
35547
0ee84aa8e705
8146705: Improve JVMCI support for blocking compilation
dnsimon
parents:
35114
diff
changeset
|
238 |
#if INCLUDE_JVMCI |
35845
30025047885d
8148507: [JVMCI] mitigate deadlocks related to JVMCI compiler under -Xbatch
dnsimon
parents:
35825
diff
changeset
|
239 |
static bool wait_for_jvmci_completion(JVMCICompiler* comp, CompileTask* task, JavaThread* thread); |
35547
0ee84aa8e705
8146705: Improve JVMCI support for blocking compilation
dnsimon
parents:
35114
diff
changeset
|
240 |
#endif |
1 | 241 |
|
242 |
static void invoke_compiler_on_method(CompileTask* task); |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32582
diff
changeset
|
243 |
static void post_compile(CompilerThread* thread, CompileTask* task, EventCompilation& event, bool success, ciEnv* ci_env); |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33168
diff
changeset
|
244 |
static void set_last_compile(CompilerThread *thread, const methodHandle& method, bool is_osr, int comp_level); |
1 | 245 |
static void push_jni_handle_block(); |
246 |
static void pop_jni_handle_block(); |
|
247 |
static void collect_statistics(CompilerThread* thread, elapsedTimer time, CompileTask* task); |
|
248 |
||
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33168
diff
changeset
|
249 |
static void compile_method_base(const methodHandle& method, |
1 | 250 |
int osr_bci, |
251 |
int comp_level, |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33168
diff
changeset
|
252 |
const methodHandle& hot_method, |
1 | 253 |
int hot_count, |
254 |
const char* comment, |
|
36597
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
35845
diff
changeset
|
255 |
bool blocking, |
11572
84afef481892
7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents:
10547
diff
changeset
|
256 |
Thread* thread); |
26587 | 257 |
|
258 |
static CompileQueue* compile_queue(int comp_level); |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
259 |
static bool init_compiler_runtime(); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
260 |
static void shutdown_compiler_runtime(AbstractCompiler* comp, CompilerThread* thread); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
261 |
|
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33168
diff
changeset
|
262 |
public: |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33168
diff
changeset
|
263 |
|
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33168
diff
changeset
|
264 |
static DirectivesStack* dirstack(); |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33168
diff
changeset
|
265 |
static void set_dirstack(DirectivesStack* stack); |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33168
diff
changeset
|
266 |
|
1 | 267 |
enum { |
268 |
// The entry bci used for non-OSR compilations. |
|
269 |
standard_entry_bci = InvocationEntryBci |
|
270 |
}; |
|
271 |
||
6453 | 272 |
static AbstractCompiler* compiler(int comp_level) { |
273 |
if (is_c2_compile(comp_level)) return _compilers[1]; // C2 |
|
274 |
if (is_c1_compile(comp_level)) return _compilers[0]; // C1 |
|
275 |
return NULL; |
|
1 | 276 |
} |
277 |
||
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33168
diff
changeset
|
278 |
static bool compilation_is_in_queue(const methodHandle& method); |
26587 | 279 |
static void print_compile_queues(outputStream* st); |
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33168
diff
changeset
|
280 |
static void print_directives(outputStream* st); |
6453 | 281 |
static int queue_size(int comp_level) { |
282 |
CompileQueue *q = compile_queue(comp_level); |
|
283 |
return q != NULL ? q->size() : 0; |
|
284 |
} |
|
35114
3d49d37ab9c4
8145270: Need to eagerly initialize JVMCI compiler under -Xcomp
dnsimon
parents:
33626
diff
changeset
|
285 |
static void compilation_init(TRAPS); |
1 | 286 |
static void init_compiler_thread_log(); |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33168
diff
changeset
|
287 |
static nmethod* compile_method(const methodHandle& method, |
6453 | 288 |
int osr_bci, |
289 |
int comp_level, |
|
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33168
diff
changeset
|
290 |
const methodHandle& hot_method, |
6453 | 291 |
int hot_count, |
11572
84afef481892
7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents:
10547
diff
changeset
|
292 |
const char* comment, Thread* thread); |
1 | 293 |
|
36597
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
35845
diff
changeset
|
294 |
static nmethod* compile_method(const methodHandle& method, |
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
35845
diff
changeset
|
295 |
int osr_bci, |
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
35845
diff
changeset
|
296 |
int comp_level, |
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
35845
diff
changeset
|
297 |
const methodHandle& hot_method, |
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
35845
diff
changeset
|
298 |
int hot_count, |
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
35845
diff
changeset
|
299 |
const char* comment, |
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
35845
diff
changeset
|
300 |
DirectiveSet* directive, |
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
35845
diff
changeset
|
301 |
Thread* thread); |
ee256e343585
8150646: Add support for blocking compiles though whitebox API
simonis
parents:
35845
diff
changeset
|
302 |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32582
diff
changeset
|
303 |
// Acquire any needed locks and assign a compile id |
33593
60764a78fa5c
8140274: methodHandles and constantPoolHandles should be passed as const references
coleenp
parents:
33168
diff
changeset
|
304 |
static uint assign_compile_id_unlocked(Thread* thread, const methodHandle& method, int osr_bci); |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32582
diff
changeset
|
305 |
|
1 | 306 |
static void compiler_thread_loop(); |
4750 | 307 |
static uint get_compilation_id() { return _compilation_id; } |
1 | 308 |
|
309 |
// Set _should_block. |
|
310 |
// Call this from the VM, with Threads_lock held and a safepoint requested. |
|
311 |
static void set_should_block(); |
|
312 |
||
313 |
// Call this from the compiler at convenient points, to poll for _should_block. |
|
314 |
static void maybe_block(); |
|
315 |
||
4750 | 316 |
enum { |
317 |
// Flags for toggling compiler activity |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
318 |
stop_compilation = 0, |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
319 |
run_compilation = 1, |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
320 |
shutdown_compilaton = 2 |
4750 | 321 |
}; |
322 |
||
27701
c6b49b72dc61
8059550: JEP-JDK-8043304: Test task: segment overflow w/ empty others
iignatyev
parents:
27696
diff
changeset
|
323 |
static jint get_compilation_activity_mode() { return _should_compile_new_jobs; } |
4750 | 324 |
static bool should_compile_new_jobs() { return UseCompiler && (_should_compile_new_jobs == run_compilation); } |
325 |
static bool set_should_compile_new_jobs(jint new_state) { |
|
326 |
// Return success if the current caller set it |
|
327 |
jint old = Atomic::cmpxchg(new_state, &_should_compile_new_jobs, 1-new_state); |
|
328 |
return (old == (1-new_state)); |
|
329 |
} |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
330 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
331 |
static void disable_compilation_forever() { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
332 |
UseCompiler = false; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
333 |
AlwaysCompileLoopMethods = false; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
334 |
Atomic::xchg(shutdown_compilaton, &_should_compile_new_jobs); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
335 |
} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
336 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
337 |
static bool is_compilation_disabled_forever() { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
338 |
return _should_compile_new_jobs == shutdown_compilaton; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
339 |
} |
26796 | 340 |
static void handle_full_code_cache(int code_blob_type); |
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20707
diff
changeset
|
341 |
// Ensures that warning is only printed once. |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20707
diff
changeset
|
342 |
static bool should_print_compiler_warning() { |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20707
diff
changeset
|
343 |
jint old = Atomic::cmpxchg(1, &_print_compilation_warning, 0); |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20707
diff
changeset
|
344 |
return old == 0; |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20707
diff
changeset
|
345 |
} |
1 | 346 |
// Return total compilation ticks |
347 |
static jlong total_compilation_ticks() { |
|
348 |
return _perf_total_compilation != NULL ? _perf_total_compilation->get_value() : 0; |
|
349 |
} |
|
350 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
351 |
// Redefine Classes support |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
352 |
static void mark_on_stack(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
353 |
|
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32582
diff
changeset
|
354 |
#if INCLUDE_JVMCI |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32582
diff
changeset
|
355 |
// Print curent compilation time stats for a given compiler |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32582
diff
changeset
|
356 |
static void print_times(AbstractCompiler* comp); |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32582
diff
changeset
|
357 |
#endif |
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32582
diff
changeset
|
358 |
|
1 | 359 |
// Print a detailed accounting of compilation time |
33160
c59f1676d27e
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32582
diff
changeset
|
360 |
static void print_times(bool per_compiler = true, bool aggregate = true); |
1 | 361 |
|
362 |
// Debugging output for failure |
|
363 |
static void print_last_compile(); |
|
364 |
||
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
14588
diff
changeset
|
365 |
// compiler name for debugging |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
14588
diff
changeset
|
366 |
static const char* compiler_name(int comp_level); |
18025 | 367 |
|
368 |
static int get_total_compile_count() { return _total_compile_count; } |
|
369 |
static int get_total_bailout_count() { return _total_bailout_count; } |
|
370 |
static int get_total_invalidated_count() { return _total_invalidated_count; } |
|
371 |
static int get_total_native_compile_count() { return _total_native_compile_count; } |
|
372 |
static int get_total_osr_compile_count() { return _total_osr_compile_count; } |
|
373 |
static int get_total_standard_compile_count() { return _total_standard_compile_count; } |
|
374 |
static int get_sum_osr_bytes_compiled() { return _sum_osr_bytes_compiled; } |
|
375 |
static int get_sum_standard_bytes_compiled() { return _sum_standard_bytes_compiled; } |
|
376 |
static int get_sum_nmethod_size() { return _sum_nmethod_size;} |
|
377 |
static int get_sum_nmethod_code_size() { return _sum_nmethod_code_size; } |
|
378 |
static long get_peak_compilation_time() { return _peak_compilation_time; } |
|
379 |
static long get_total_compilation_time() { return _t_total_compilation.milliseconds(); } |
|
27461
90e9e0f9c0c5
8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents:
26913
diff
changeset
|
380 |
|
90e9e0f9c0c5
8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents:
26913
diff
changeset
|
381 |
// Log that compilation profiling is skipped because metaspace is full. |
90e9e0f9c0c5
8037842: Failing to allocate MethodCounters and MDO causes a serious performance drop
coleenp
parents:
26913
diff
changeset
|
382 |
static void log_metaspace_failure(); |
1 | 383 |
}; |
7397 | 384 |
|
385 |
#endif // SHARE_VM_COMPILER_COMPILEBROKER_HPP |