author | vlivanov |
Tue, 11 Mar 2014 15:06:34 +0400 | |
changeset 24443 | 7aaf1b306b55 |
parent 24321 | 621f7e09fc0a |
child 25642 | 9d809ea074d9 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
18025 | 2 |
* Copyright (c) 1999, 2013, 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" |
|
30 |
#include "runtime/perfData.hpp" |
|
31 |
||
1 | 32 |
class nmethod; |
33 |
class nmethodLocker; |
|
34 |
||
35 |
// CompileTask |
|
36 |
// |
|
37 |
// An entry in the compile queue. It represents a pending or current |
|
38 |
// compilation. |
|
13195 | 39 |
class CompileTask : public CHeapObj<mtCompiler> { |
10547 | 40 |
friend class VMStructs; |
41 |
||
1 | 42 |
private: |
24321
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
43 |
static CompileTask* _task_free_list; |
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
44 |
#ifdef ASSERT |
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
45 |
static int _num_allocated_tasks; |
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
46 |
#endif |
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
47 |
|
1 | 48 |
Monitor* _lock; |
49 |
uint _compile_id; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
50 |
Method* _method; |
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
13891
diff
changeset
|
51 |
jobject _method_holder; |
1 | 52 |
int _osr_bci; |
53 |
bool _is_complete; |
|
54 |
bool _is_success; |
|
55 |
bool _is_blocking; |
|
56 |
int _comp_level; |
|
57 |
int _num_inlined_bytecodes; |
|
58 |
nmethodLocker* _code_handle; // holder of eventual result |
|
6453 | 59 |
CompileTask* _next, *_prev; |
24321
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
60 |
bool _is_free; |
1 | 61 |
// Fields used for logging why the compilation was initiated: |
62 |
jlong _time_queued; // in units of os::elapsed_counter() |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
63 |
Method* _hot_method; // which method actually triggered this task |
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
13891
diff
changeset
|
64 |
jobject _hot_method_holder; |
1 | 65 |
int _hot_count; // information about its invocation counter |
66 |
const char* _comment; // more info about the task |
|
67 |
||
68 |
public: |
|
69 |
CompileTask() { |
|
70 |
_lock = new Monitor(Mutex::nonleaf+2, "CompileTaskLock"); |
|
71 |
} |
|
72 |
||
73 |
void initialize(int compile_id, methodHandle method, int osr_bci, int comp_level, |
|
74 |
methodHandle hot_method, int hot_count, const char* comment, |
|
75 |
bool is_blocking); |
|
76 |
||
24321
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
77 |
static CompileTask* allocate(); |
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
78 |
static void free(CompileTask* task); |
1 | 79 |
|
80 |
int compile_id() const { return _compile_id; } |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
81 |
Method* method() const { return _method; } |
1 | 82 |
int osr_bci() const { return _osr_bci; } |
83 |
bool is_complete() const { return _is_complete; } |
|
84 |
bool is_blocking() const { return _is_blocking; } |
|
85 |
bool is_success() const { return _is_success; } |
|
86 |
||
87 |
nmethodLocker* code_handle() const { return _code_handle; } |
|
88 |
void set_code_handle(nmethodLocker* l) { _code_handle = l; } |
|
89 |
nmethod* code() const; // _code_handle->code() |
|
90 |
void set_code(nmethod* nm); // _code_handle->set_code(nm) |
|
91 |
||
92 |
Monitor* lock() const { return _lock; } |
|
93 |
||
94 |
void mark_complete() { _is_complete = true; } |
|
95 |
void mark_success() { _is_success = true; } |
|
96 |
||
97 |
int comp_level() { return _comp_level;} |
|
98 |
void set_comp_level(int comp_level) { _comp_level = comp_level;} |
|
99 |
||
100 |
int num_inlined_bytecodes() const { return _num_inlined_bytecodes; } |
|
101 |
void set_num_inlined_bytecodes(int n) { _num_inlined_bytecodes = n; } |
|
102 |
||
103 |
CompileTask* next() const { return _next; } |
|
104 |
void set_next(CompileTask* next) { _next = next; } |
|
6453 | 105 |
CompileTask* prev() const { return _prev; } |
106 |
void set_prev(CompileTask* prev) { _prev = prev; } |
|
24321
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
107 |
bool is_free() const { return _is_free; } |
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
108 |
void set_is_free(bool val) { _is_free = val; } |
1 | 109 |
|
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
7397
diff
changeset
|
110 |
private: |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
111 |
static void print_compilation_impl(outputStream* st, Method* method, int compile_id, int comp_level, |
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
112 |
bool is_osr_method = false, int osr_bci = -1, bool is_blocking = false, |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
113 |
const char* msg = NULL, bool short_form = false); |
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
7397
diff
changeset
|
114 |
|
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
7397
diff
changeset
|
115 |
public: |
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
116 |
void print_compilation(outputStream* st = tty, const char* msg = NULL, bool short_form = false); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
117 |
static void print_compilation(outputStream* st, const nmethod* nm, const char* msg = NULL, bool short_form = false) { |
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
118 |
print_compilation_impl(st, nm->method(), nm->compile_id(), nm->comp_level(), |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
119 |
nm->is_osr_method(), nm->is_osr_method() ? nm->osr_entry_bci() : -1, /*is_blocking*/ false, |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
120 |
msg, short_form); |
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
7397
diff
changeset
|
121 |
} |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
7397
diff
changeset
|
122 |
|
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
7397
diff
changeset
|
123 |
static void print_inlining(outputStream* st, ciMethod* method, int inline_level, int bci, const char* msg = NULL); |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
7397
diff
changeset
|
124 |
static void print_inlining(ciMethod* method, int inline_level, int bci, const char* msg = NULL) { |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
7397
diff
changeset
|
125 |
print_inlining(tty, method, inline_level, bci, msg); |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
7397
diff
changeset
|
126 |
} |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
7397
diff
changeset
|
127 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
128 |
// Redefine Classes support |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
129 |
void mark_on_stack(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
130 |
|
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
7397
diff
changeset
|
131 |
static void print_inline_indent(int inline_level, outputStream* st = tty); |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
7397
diff
changeset
|
132 |
|
1 | 133 |
void print(); |
134 |
void print_line(); |
|
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
7397
diff
changeset
|
135 |
void print_line_on_error(outputStream* st, char* buf, int buflen); |
6453 | 136 |
|
1 | 137 |
void log_task(xmlStream* log); |
138 |
void log_task_queued(); |
|
139 |
void log_task_start(CompileLog* log); |
|
140 |
void log_task_done(CompileLog* log); |
|
141 |
}; |
|
142 |
||
143 |
// CompilerCounters |
|
144 |
// |
|
145 |
// Per Compiler Performance Counters. |
|
146 |
// |
|
13195 | 147 |
class CompilerCounters : public CHeapObj<mtCompiler> { |
1 | 148 |
|
149 |
public: |
|
150 |
enum { |
|
151 |
cmname_buffer_length = 160 |
|
152 |
}; |
|
153 |
||
154 |
private: |
|
155 |
||
156 |
char _current_method[cmname_buffer_length]; |
|
157 |
PerfStringVariable* _perf_current_method; |
|
158 |
||
159 |
int _compile_type; |
|
160 |
PerfVariable* _perf_compile_type; |
|
161 |
||
162 |
PerfCounter* _perf_time; |
|
163 |
PerfCounter* _perf_compiles; |
|
164 |
||
165 |
public: |
|
166 |
CompilerCounters(const char* name, int instance, TRAPS); |
|
167 |
||
168 |
// these methods should be called in a thread safe context |
|
169 |
||
170 |
void set_current_method(const char* method) { |
|
171 |
strncpy(_current_method, method, (size_t)cmname_buffer_length); |
|
172 |
if (UsePerfData) _perf_current_method->set_value(method); |
|
173 |
} |
|
174 |
||
175 |
char* current_method() { return _current_method; } |
|
176 |
||
177 |
void set_compile_type(int compile_type) { |
|
178 |
_compile_type = compile_type; |
|
179 |
if (UsePerfData) _perf_compile_type->set_value((jlong)compile_type); |
|
180 |
} |
|
181 |
||
182 |
int compile_type() { return _compile_type; } |
|
183 |
||
184 |
PerfCounter* time_counter() { return _perf_time; } |
|
185 |
PerfCounter* compile_counter() { return _perf_compiles; } |
|
186 |
}; |
|
187 |
||
188 |
// CompileQueue |
|
189 |
// |
|
190 |
// A list of CompileTasks. |
|
13195 | 191 |
class CompileQueue : public CHeapObj<mtCompiler> { |
1 | 192 |
private: |
193 |
const char* _name; |
|
194 |
Monitor* _lock; |
|
195 |
||
196 |
CompileTask* _first; |
|
197 |
CompileTask* _last; |
|
198 |
||
24443
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
199 |
CompileTask* _first_stale; |
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
200 |
|
6453 | 201 |
int _size; |
24443
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
202 |
|
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
203 |
void purge_stale_tasks(); |
1 | 204 |
public: |
205 |
CompileQueue(const char* name, Monitor* lock) { |
|
206 |
_name = name; |
|
207 |
_lock = lock; |
|
208 |
_first = NULL; |
|
209 |
_last = NULL; |
|
6453 | 210 |
_size = 0; |
24443
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
211 |
_first_stale = NULL; |
1 | 212 |
} |
213 |
||
214 |
const char* name() const { return _name; } |
|
215 |
Monitor* lock() const { return _lock; } |
|
216 |
||
217 |
void add(CompileTask* task); |
|
6453 | 218 |
void remove(CompileTask* task); |
24443
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
219 |
void remove_and_mark_stale(CompileTask* task); |
6453 | 220 |
CompileTask* first() { return _first; } |
221 |
CompileTask* last() { return _last; } |
|
1 | 222 |
|
223 |
CompileTask* get(); |
|
224 |
||
225 |
bool is_empty() const { return _first == NULL; } |
|
6453 | 226 |
int size() const { return _size; } |
1 | 227 |
|
24443
7aaf1b306b55
8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents:
24321
diff
changeset
|
228 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
229 |
// Redefine Classes support |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
230 |
void mark_on_stack(); |
24321
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
231 |
void free_all(); |
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
232 |
NOT_PRODUCT (void print();) |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
233 |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
234 |
~CompileQueue() { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
235 |
assert (is_empty(), " Compile Queue must be empty"); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
236 |
} |
1 | 237 |
}; |
238 |
||
6453 | 239 |
// CompileTaskWrapper |
240 |
// |
|
241 |
// Assign this task to the current thread. Deallocate the task |
|
242 |
// when the compilation is complete. |
|
243 |
class CompileTaskWrapper : StackObj { |
|
244 |
public: |
|
245 |
CompileTaskWrapper(CompileTask* task); |
|
246 |
~CompileTaskWrapper(); |
|
247 |
}; |
|
248 |
||
1 | 249 |
|
250 |
// Compilation |
|
251 |
// |
|
252 |
// The broker for all compilation requests. |
|
253 |
class CompileBroker: AllStatic { |
|
254 |
friend class Threads; |
|
255 |
friend class CompileTaskWrapper; |
|
256 |
||
257 |
public: |
|
258 |
enum { |
|
259 |
name_buffer_length = 100 |
|
260 |
}; |
|
261 |
||
262 |
// Compile type Information for print_last_compile() and CompilerCounters |
|
263 |
enum { no_compile, normal_compile, osr_compile, native_compile }; |
|
22247 | 264 |
static int assign_compile_id (methodHandle method, int osr_bci); |
265 |
||
1 | 266 |
|
267 |
private: |
|
268 |
static bool _initialized; |
|
269 |
static volatile bool _should_block; |
|
270 |
||
4750 | 271 |
// This flag can be used to stop compilation or turn it back on |
272 |
static volatile jint _should_compile_new_jobs; |
|
273 |
||
1 | 274 |
// The installed compiler(s) |
275 |
static AbstractCompiler* _compilers[2]; |
|
276 |
||
277 |
// These counters are used for assigning id's to each compilation |
|
22247 | 278 |
static volatile jint _compilation_id; |
279 |
static volatile jint _osr_compilation_id; |
|
1 | 280 |
|
281 |
static int _last_compile_type; |
|
282 |
static int _last_compile_level; |
|
283 |
static char _last_method_compiled[name_buffer_length]; |
|
284 |
||
24321
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
285 |
static CompileQueue* _c2_compile_queue; |
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
286 |
static CompileQueue* _c1_compile_queue; |
1 | 287 |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
288 |
static GrowableArray<CompilerThread*>* _compiler_threads; |
1 | 289 |
|
290 |
// performance counters |
|
291 |
static PerfCounter* _perf_total_compilation; |
|
292 |
static PerfCounter* _perf_native_compilation; |
|
293 |
static PerfCounter* _perf_osr_compilation; |
|
294 |
static PerfCounter* _perf_standard_compilation; |
|
295 |
||
296 |
static PerfCounter* _perf_total_bailout_count; |
|
297 |
static PerfCounter* _perf_total_invalidated_count; |
|
298 |
static PerfCounter* _perf_total_compile_count; |
|
299 |
static PerfCounter* _perf_total_native_compile_count; |
|
300 |
static PerfCounter* _perf_total_osr_compile_count; |
|
301 |
static PerfCounter* _perf_total_standard_compile_count; |
|
302 |
||
303 |
static PerfCounter* _perf_sum_osr_bytes_compiled; |
|
304 |
static PerfCounter* _perf_sum_standard_bytes_compiled; |
|
305 |
static PerfCounter* _perf_sum_nmethod_size; |
|
306 |
static PerfCounter* _perf_sum_nmethod_code_size; |
|
307 |
||
308 |
static PerfStringVariable* _perf_last_method; |
|
309 |
static PerfStringVariable* _perf_last_failed_method; |
|
310 |
static PerfStringVariable* _perf_last_invalidated_method; |
|
311 |
static PerfVariable* _perf_last_compile_type; |
|
312 |
static PerfVariable* _perf_last_compile_size; |
|
313 |
static PerfVariable* _perf_last_failed_type; |
|
314 |
static PerfVariable* _perf_last_invalidated_type; |
|
315 |
||
316 |
// Timers and counters for generating statistics |
|
317 |
static elapsedTimer _t_total_compilation; |
|
318 |
static elapsedTimer _t_osr_compilation; |
|
319 |
static elapsedTimer _t_standard_compilation; |
|
320 |
||
18025 | 321 |
static int _total_compile_count; |
1 | 322 |
static int _total_bailout_count; |
323 |
static int _total_invalidated_count; |
|
324 |
static int _total_native_compile_count; |
|
325 |
static int _total_osr_compile_count; |
|
326 |
static int _total_standard_compile_count; |
|
327 |
static int _sum_osr_bytes_compiled; |
|
328 |
static int _sum_standard_bytes_compiled; |
|
329 |
static int _sum_nmethod_size; |
|
330 |
static int _sum_nmethod_code_size; |
|
18025 | 331 |
static long _peak_compilation_time; |
1 | 332 |
|
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20707
diff
changeset
|
333 |
static volatile jint _print_compilation_warning; |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20707
diff
changeset
|
334 |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
335 |
static CompilerThread* make_compiler_thread(const char* name, CompileQueue* queue, CompilerCounters* counters, AbstractCompiler* comp, TRAPS); |
6453 | 336 |
static void init_compiler_threads(int c1_compiler_count, int c2_compiler_count); |
1 | 337 |
static bool compilation_is_complete (methodHandle method, int osr_bci, int comp_level); |
338 |
static bool compilation_is_prohibited(methodHandle method, int osr_bci, int comp_level); |
|
24321
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
339 |
static bool is_compile_blocking (); |
1 | 340 |
static void preload_classes (methodHandle method, TRAPS); |
341 |
||
342 |
static CompileTask* create_compile_task(CompileQueue* queue, |
|
343 |
int compile_id, |
|
344 |
methodHandle method, |
|
345 |
int osr_bci, |
|
346 |
int comp_level, |
|
347 |
methodHandle hot_method, |
|
348 |
int hot_count, |
|
349 |
const char* comment, |
|
350 |
bool blocking); |
|
351 |
static void wait_for_completion(CompileTask* task); |
|
352 |
||
353 |
static void invoke_compiler_on_method(CompileTask* task); |
|
354 |
static void set_last_compile(CompilerThread *thread, methodHandle method, bool is_osr, int comp_level); |
|
355 |
static void push_jni_handle_block(); |
|
356 |
static void pop_jni_handle_block(); |
|
357 |
static bool check_break_at(methodHandle method, int compile_id, bool is_osr); |
|
358 |
static void collect_statistics(CompilerThread* thread, elapsedTimer time, CompileTask* task); |
|
359 |
||
360 |
static void compile_method_base(methodHandle method, |
|
361 |
int osr_bci, |
|
362 |
int comp_level, |
|
363 |
methodHandle hot_method, |
|
364 |
int hot_count, |
|
365 |
const char* comment, |
|
11572
84afef481892
7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents:
10547
diff
changeset
|
366 |
Thread* thread); |
6453 | 367 |
static CompileQueue* compile_queue(int comp_level) { |
24321
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
368 |
if (is_c2_compile(comp_level)) return _c2_compile_queue; |
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
369 |
if (is_c1_compile(comp_level)) return _c1_compile_queue; |
6453 | 370 |
return NULL; |
371 |
} |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
372 |
static bool init_compiler_runtime(); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
373 |
static void shutdown_compiler_runtime(AbstractCompiler* comp, CompilerThread* thread); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
374 |
|
1 | 375 |
public: |
376 |
enum { |
|
377 |
// The entry bci used for non-OSR compilations. |
|
378 |
standard_entry_bci = InvocationEntryBci |
|
379 |
}; |
|
380 |
||
6453 | 381 |
static AbstractCompiler* compiler(int comp_level) { |
382 |
if (is_c2_compile(comp_level)) return _compilers[1]; // C2 |
|
383 |
if (is_c1_compile(comp_level)) return _compilers[0]; // C1 |
|
384 |
return NULL; |
|
1 | 385 |
} |
386 |
||
24321
621f7e09fc0a
8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents:
22247
diff
changeset
|
387 |
static bool compilation_is_in_queue(methodHandle method); |
6453 | 388 |
static int queue_size(int comp_level) { |
389 |
CompileQueue *q = compile_queue(comp_level); |
|
390 |
return q != NULL ? q->size() : 0; |
|
391 |
} |
|
1 | 392 |
static void compilation_init(); |
393 |
static void init_compiler_thread_log(); |
|
6453 | 394 |
static nmethod* compile_method(methodHandle method, |
395 |
int osr_bci, |
|
396 |
int comp_level, |
|
397 |
methodHandle hot_method, |
|
398 |
int hot_count, |
|
11572
84afef481892
7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents:
10547
diff
changeset
|
399 |
const char* comment, Thread* thread); |
1 | 400 |
|
401 |
static void compiler_thread_loop(); |
|
4750 | 402 |
static uint get_compilation_id() { return _compilation_id; } |
1 | 403 |
|
404 |
// Set _should_block. |
|
405 |
// Call this from the VM, with Threads_lock held and a safepoint requested. |
|
406 |
static void set_should_block(); |
|
407 |
||
408 |
// Call this from the compiler at convenient points, to poll for _should_block. |
|
409 |
static void maybe_block(); |
|
410 |
||
4750 | 411 |
enum { |
412 |
// Flags for toggling compiler activity |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
413 |
stop_compilation = 0, |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
414 |
run_compilation = 1, |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
415 |
shutdown_compilaton = 2 |
4750 | 416 |
}; |
417 |
||
418 |
static bool should_compile_new_jobs() { return UseCompiler && (_should_compile_new_jobs == run_compilation); } |
|
419 |
static bool set_should_compile_new_jobs(jint new_state) { |
|
420 |
// Return success if the current caller set it |
|
421 |
jint old = Atomic::cmpxchg(new_state, &_should_compile_new_jobs, 1-new_state); |
|
422 |
return (old == (1-new_state)); |
|
423 |
} |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
424 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
425 |
static void disable_compilation_forever() { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
426 |
UseCompiler = false; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
427 |
AlwaysCompileLoopMethods = false; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
428 |
Atomic::xchg(shutdown_compilaton, &_should_compile_new_jobs); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
429 |
} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
430 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
431 |
static bool is_compilation_disabled_forever() { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
432 |
return _should_compile_new_jobs == shutdown_compilaton; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
18025
diff
changeset
|
433 |
} |
4750 | 434 |
static void handle_full_code_cache(); |
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20707
diff
changeset
|
435 |
// Ensures that warning is only printed once. |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20707
diff
changeset
|
436 |
static bool should_print_compiler_warning() { |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20707
diff
changeset
|
437 |
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
|
438 |
return old == 0; |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
20707
diff
changeset
|
439 |
} |
1 | 440 |
// Return total compilation ticks |
441 |
static jlong total_compilation_ticks() { |
|
442 |
return _perf_total_compilation != NULL ? _perf_total_compilation->get_value() : 0; |
|
443 |
} |
|
444 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
445 |
// Redefine Classes support |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
446 |
static void mark_on_stack(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
447 |
|
1 | 448 |
// Print a detailed accounting of compilation time |
449 |
static void print_times(); |
|
450 |
||
451 |
// Debugging output for failure |
|
452 |
static void print_last_compile(); |
|
453 |
||
454 |
static void print_compiler_threads_on(outputStream* st); |
|
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
14588
diff
changeset
|
455 |
|
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
14588
diff
changeset
|
456 |
// compiler name for debugging |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
14588
diff
changeset
|
457 |
static const char* compiler_name(int comp_level); |
18025 | 458 |
|
459 |
static int get_total_compile_count() { return _total_compile_count; } |
|
460 |
static int get_total_bailout_count() { return _total_bailout_count; } |
|
461 |
static int get_total_invalidated_count() { return _total_invalidated_count; } |
|
462 |
static int get_total_native_compile_count() { return _total_native_compile_count; } |
|
463 |
static int get_total_osr_compile_count() { return _total_osr_compile_count; } |
|
464 |
static int get_total_standard_compile_count() { return _total_standard_compile_count; } |
|
465 |
static int get_sum_osr_bytes_compiled() { return _sum_osr_bytes_compiled; } |
|
466 |
static int get_sum_standard_bytes_compiled() { return _sum_standard_bytes_compiled; } |
|
467 |
static int get_sum_nmethod_size() { return _sum_nmethod_size;} |
|
468 |
static int get_sum_nmethod_code_size() { return _sum_nmethod_code_size; } |
|
469 |
static long get_peak_compilation_time() { return _peak_compilation_time; } |
|
470 |
static long get_total_compilation_time() { return _t_total_compilation.milliseconds(); } |
|
1 | 471 |
}; |
7397 | 472 |
|
473 |
#endif // SHARE_VM_COMPILER_COMPILEBROKER_HPP |