author | kvn |
Wed, 19 Feb 2014 12:08:49 -0800 | |
changeset 22876 | 57aa8995d43b |
parent 22758 | c6b6abb73544 |
parent 22872 | b6902ee5bc8d |
child 22881 | b16d7faa638d |
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:
5533
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5533
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:
5533
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "classfile/systemDictionary.hpp" |
|
27 |
#include "classfile/vmSymbols.hpp" |
|
28 |
#include "code/codeCache.hpp" |
|
29 |
#include "compiler/compileBroker.hpp" |
|
30 |
#include "compiler/compileLog.hpp" |
|
31 |
#include "compiler/compilerOracle.hpp" |
|
32 |
#include "interpreter/linkResolver.hpp" |
|
33 |
#include "memory/allocation.inline.hpp" |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
34 |
#include "oops/methodData.hpp" |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
35 |
#include "oops/method.hpp" |
7397 | 36 |
#include "oops/oop.inline.hpp" |
37 |
#include "prims/nativeLookup.hpp" |
|
38 |
#include "runtime/arguments.hpp" |
|
39 |
#include "runtime/compilationPolicy.hpp" |
|
40 |
#include "runtime/init.hpp" |
|
41 |
#include "runtime/interfaceSupport.hpp" |
|
42 |
#include "runtime/javaCalls.hpp" |
|
43 |
#include "runtime/os.hpp" |
|
44 |
#include "runtime/sharedRuntime.hpp" |
|
45 |
#include "runtime/sweeper.hpp" |
|
18025 | 46 |
#include "trace/tracing.hpp" |
7397 | 47 |
#include "utilities/dtrace.hpp" |
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
48 |
#include "utilities/events.hpp" |
7397 | 49 |
#ifdef COMPILER1 |
50 |
#include "c1/c1_Compiler.hpp" |
|
51 |
#endif |
|
52 |
#ifdef COMPILER2 |
|
53 |
#include "opto/c2compiler.hpp" |
|
54 |
#endif |
|
55 |
#ifdef SHARK |
|
56 |
#include "shark/sharkCompiler.hpp" |
|
57 |
#endif |
|
1 | 58 |
|
59 |
#ifdef DTRACE_ENABLED |
|
60 |
||
61 |
// Only bother with this argument setup if dtrace is available |
|
62 |
||
10739 | 63 |
#ifndef USDT2 |
1 | 64 |
HS_DTRACE_PROBE_DECL8(hotspot, method__compile__begin, |
65 |
char*, intptr_t, char*, intptr_t, char*, intptr_t, char*, intptr_t); |
|
66 |
HS_DTRACE_PROBE_DECL9(hotspot, method__compile__end, |
|
67 |
char*, intptr_t, char*, intptr_t, char*, intptr_t, char*, intptr_t, bool); |
|
68 |
||
17133
ef4dd2f8fcb1
8013532: Remove unused parameter "compiler" from DTRACE_METHOD_COMPILE* macros
roland
parents:
17132
diff
changeset
|
69 |
#define DTRACE_METHOD_COMPILE_BEGIN_PROBE(method, comp_name) \ |
1 | 70 |
{ \ |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
71 |
Symbol* klass_name = (method)->klass_name(); \ |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
72 |
Symbol* name = (method)->name(); \ |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
73 |
Symbol* signature = (method)->signature(); \ |
1 | 74 |
HS_DTRACE_PROBE8(hotspot, method__compile__begin, \ |
75 |
comp_name, strlen(comp_name), \ |
|
76 |
klass_name->bytes(), klass_name->utf8_length(), \ |
|
77 |
name->bytes(), name->utf8_length(), \ |
|
78 |
signature->bytes(), signature->utf8_length()); \ |
|
79 |
} |
|
80 |
||
17133
ef4dd2f8fcb1
8013532: Remove unused parameter "compiler" from DTRACE_METHOD_COMPILE* macros
roland
parents:
17132
diff
changeset
|
81 |
#define DTRACE_METHOD_COMPILE_END_PROBE(method, comp_name, success) \ |
1 | 82 |
{ \ |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
83 |
Symbol* klass_name = (method)->klass_name(); \ |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
84 |
Symbol* name = (method)->name(); \ |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
85 |
Symbol* signature = (method)->signature(); \ |
1 | 86 |
HS_DTRACE_PROBE9(hotspot, method__compile__end, \ |
87 |
comp_name, strlen(comp_name), \ |
|
88 |
klass_name->bytes(), klass_name->utf8_length(), \ |
|
89 |
name->bytes(), name->utf8_length(), \ |
|
90 |
signature->bytes(), signature->utf8_length(), (success)); \ |
|
91 |
} |
|
92 |
||
10739 | 93 |
#else /* USDT2 */ |
94 |
||
17133
ef4dd2f8fcb1
8013532: Remove unused parameter "compiler" from DTRACE_METHOD_COMPILE* macros
roland
parents:
17132
diff
changeset
|
95 |
#define DTRACE_METHOD_COMPILE_BEGIN_PROBE(method, comp_name) \ |
10739 | 96 |
{ \ |
97 |
Symbol* klass_name = (method)->klass_name(); \ |
|
98 |
Symbol* name = (method)->name(); \ |
|
99 |
Symbol* signature = (method)->signature(); \ |
|
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
100 |
HOTSPOT_METHOD_COMPILE_BEGIN( \ |
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22247
diff
changeset
|
101 |
(char *) comp_name, strlen(comp_name), \ |
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
102 |
(char *) klass_name->bytes(), klass_name->utf8_length(), \ |
10739 | 103 |
(char *) name->bytes(), name->utf8_length(), \ |
104 |
(char *) signature->bytes(), signature->utf8_length()); \ |
|
105 |
} |
|
106 |
||
17133
ef4dd2f8fcb1
8013532: Remove unused parameter "compiler" from DTRACE_METHOD_COMPILE* macros
roland
parents:
17132
diff
changeset
|
107 |
#define DTRACE_METHOD_COMPILE_END_PROBE(method, comp_name, success) \ |
10739 | 108 |
{ \ |
109 |
Symbol* klass_name = (method)->klass_name(); \ |
|
110 |
Symbol* name = (method)->name(); \ |
|
111 |
Symbol* signature = (method)->signature(); \ |
|
112 |
HOTSPOT_METHOD_COMPILE_END( \ |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
22247
diff
changeset
|
113 |
(char *) comp_name, strlen(comp_name), \ |
10739 | 114 |
(char *) klass_name->bytes(), klass_name->utf8_length(), \ |
115 |
(char *) name->bytes(), name->utf8_length(), \ |
|
116 |
(char *) signature->bytes(), signature->utf8_length(), (success)); \ |
|
117 |
} |
|
118 |
#endif /* USDT2 */ |
|
119 |
||
1 | 120 |
#else // ndef DTRACE_ENABLED |
121 |
||
17133
ef4dd2f8fcb1
8013532: Remove unused parameter "compiler" from DTRACE_METHOD_COMPILE* macros
roland
parents:
17132
diff
changeset
|
122 |
#define DTRACE_METHOD_COMPILE_BEGIN_PROBE(method, comp_name) |
ef4dd2f8fcb1
8013532: Remove unused parameter "compiler" from DTRACE_METHOD_COMPILE* macros
roland
parents:
17132
diff
changeset
|
123 |
#define DTRACE_METHOD_COMPILE_END_PROBE(method, comp_name, success) |
1 | 124 |
|
125 |
#endif // ndef DTRACE_ENABLED |
|
126 |
||
127 |
bool CompileBroker::_initialized = false; |
|
128 |
volatile bool CompileBroker::_should_block = false; |
|
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
21204
diff
changeset
|
129 |
volatile jint CompileBroker::_print_compilation_warning = 0; |
4750 | 130 |
volatile jint CompileBroker::_should_compile_new_jobs = run_compilation; |
1 | 131 |
|
132 |
// The installed compiler(s) |
|
133 |
AbstractCompiler* CompileBroker::_compilers[2]; |
|
134 |
||
22247 | 135 |
// These counters are used to assign an unique ID to each compilation. |
136 |
volatile jint CompileBroker::_compilation_id = 0; |
|
137 |
volatile jint CompileBroker::_osr_compilation_id = 0; |
|
1 | 138 |
|
139 |
// Debugging information |
|
140 |
int CompileBroker::_last_compile_type = no_compile; |
|
141 |
int CompileBroker::_last_compile_level = CompLevel_none; |
|
142 |
char CompileBroker::_last_method_compiled[CompileBroker::name_buffer_length]; |
|
143 |
||
144 |
// Performance counters |
|
145 |
PerfCounter* CompileBroker::_perf_total_compilation = NULL; |
|
146 |
PerfCounter* CompileBroker::_perf_osr_compilation = NULL; |
|
147 |
PerfCounter* CompileBroker::_perf_standard_compilation = NULL; |
|
148 |
||
149 |
PerfCounter* CompileBroker::_perf_total_bailout_count = NULL; |
|
150 |
PerfCounter* CompileBroker::_perf_total_invalidated_count = NULL; |
|
151 |
PerfCounter* CompileBroker::_perf_total_compile_count = NULL; |
|
152 |
PerfCounter* CompileBroker::_perf_total_osr_compile_count = NULL; |
|
153 |
PerfCounter* CompileBroker::_perf_total_standard_compile_count = NULL; |
|
154 |
||
155 |
PerfCounter* CompileBroker::_perf_sum_osr_bytes_compiled = NULL; |
|
156 |
PerfCounter* CompileBroker::_perf_sum_standard_bytes_compiled = NULL; |
|
157 |
PerfCounter* CompileBroker::_perf_sum_nmethod_size = NULL; |
|
158 |
PerfCounter* CompileBroker::_perf_sum_nmethod_code_size = NULL; |
|
159 |
||
160 |
PerfStringVariable* CompileBroker::_perf_last_method = NULL; |
|
161 |
PerfStringVariable* CompileBroker::_perf_last_failed_method = NULL; |
|
162 |
PerfStringVariable* CompileBroker::_perf_last_invalidated_method = NULL; |
|
163 |
PerfVariable* CompileBroker::_perf_last_compile_type = NULL; |
|
164 |
PerfVariable* CompileBroker::_perf_last_compile_size = NULL; |
|
165 |
PerfVariable* CompileBroker::_perf_last_failed_type = NULL; |
|
166 |
PerfVariable* CompileBroker::_perf_last_invalidated_type = NULL; |
|
167 |
||
168 |
// Timers and counters for generating statistics |
|
169 |
elapsedTimer CompileBroker::_t_total_compilation; |
|
170 |
elapsedTimer CompileBroker::_t_osr_compilation; |
|
171 |
elapsedTimer CompileBroker::_t_standard_compilation; |
|
172 |
||
173 |
int CompileBroker::_total_bailout_count = 0; |
|
174 |
int CompileBroker::_total_invalidated_count = 0; |
|
175 |
int CompileBroker::_total_compile_count = 0; |
|
176 |
int CompileBroker::_total_osr_compile_count = 0; |
|
177 |
int CompileBroker::_total_standard_compile_count = 0; |
|
178 |
||
179 |
int CompileBroker::_sum_osr_bytes_compiled = 0; |
|
180 |
int CompileBroker::_sum_standard_bytes_compiled = 0; |
|
181 |
int CompileBroker::_sum_nmethod_size = 0; |
|
182 |
int CompileBroker::_sum_nmethod_code_size = 0; |
|
183 |
||
18025 | 184 |
long CompileBroker::_peak_compilation_time = 0; |
185 |
||
186 |
CompileQueue* CompileBroker::_c2_method_queue = NULL; |
|
187 |
CompileQueue* CompileBroker::_c1_method_queue = NULL; |
|
188 |
CompileTask* CompileBroker::_task_free_list = NULL; |
|
1 | 189 |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
190 |
GrowableArray<CompilerThread*>* CompileBroker::_compiler_threads = NULL; |
1 | 191 |
|
192 |
||
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
193 |
class CompilationLog : public StringEventLog { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
194 |
public: |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
195 |
CompilationLog() : StringEventLog("Compilation events") { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
196 |
} |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
197 |
|
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
198 |
void log_compile(JavaThread* thread, CompileTask* task) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
199 |
StringLogMessage lm; |
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
200 |
stringStream sstr = lm.stream(); |
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
201 |
// msg.time_stamp().update_to(tty->time_stamp().ticks()); |
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
202 |
task->print_compilation(&sstr, NULL, true); |
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
203 |
log(thread, "%s", (const char*)lm); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
204 |
} |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
205 |
|
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
206 |
void log_nmethod(JavaThread* thread, nmethod* nm) { |
11788 | 207 |
log(thread, "nmethod %d%s " INTPTR_FORMAT " code ["INTPTR_FORMAT ", " INTPTR_FORMAT "]", |
208 |
nm->compile_id(), nm->is_osr_method() ? "%" : "", |
|
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
209 |
nm, nm->code_begin(), nm->code_end()); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
210 |
} |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
211 |
|
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
212 |
void log_failure(JavaThread* thread, CompileTask* task, const char* reason, const char* retry_message) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
213 |
StringLogMessage lm; |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
214 |
lm.print("%4d COMPILE SKIPPED: %s", task->compile_id(), reason); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
215 |
if (retry_message != NULL) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
216 |
lm.append(" (%s)", retry_message); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
217 |
} |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
218 |
lm.print("\n"); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
219 |
log(thread, "%s", (const char*)lm); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
220 |
} |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
221 |
}; |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
222 |
|
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
223 |
static CompilationLog* _compilation_log = NULL; |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
224 |
|
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
225 |
void compileBroker_init() { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
226 |
if (LogEvents) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
227 |
_compilation_log = new CompilationLog(); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
228 |
} |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
229 |
} |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
230 |
|
1 | 231 |
CompileTaskWrapper::CompileTaskWrapper(CompileTask* task) { |
232 |
CompilerThread* thread = CompilerThread::current(); |
|
233 |
thread->set_task(task); |
|
234 |
CompileLog* log = thread->log(); |
|
235 |
if (log != NULL) task->log_task_start(log); |
|
236 |
} |
|
237 |
||
238 |
CompileTaskWrapper::~CompileTaskWrapper() { |
|
239 |
CompilerThread* thread = CompilerThread::current(); |
|
240 |
CompileTask* task = thread->task(); |
|
241 |
CompileLog* log = thread->log(); |
|
242 |
if (log != NULL) task->log_task_done(log); |
|
243 |
thread->set_task(NULL); |
|
244 |
task->set_code_handle(NULL); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
245 |
thread->set_env(NULL); |
1 | 246 |
if (task->is_blocking()) { |
247 |
MutexLocker notifier(task->lock(), thread); |
|
248 |
task->mark_complete(); |
|
249 |
// Notify the waiting thread that the compilation has completed. |
|
250 |
task->lock()->notify_all(); |
|
251 |
} else { |
|
252 |
task->mark_complete(); |
|
253 |
||
254 |
// By convention, the compiling thread is responsible for |
|
255 |
// recycling a non-blocking CompileTask. |
|
256 |
CompileBroker::free_task(task); |
|
257 |
} |
|
258 |
} |
|
259 |
||
260 |
||
261 |
// ------------------------------------------------------------------ |
|
262 |
// CompileTask::initialize |
|
263 |
void CompileTask::initialize(int compile_id, |
|
264 |
methodHandle method, |
|
265 |
int osr_bci, |
|
266 |
int comp_level, |
|
267 |
methodHandle hot_method, |
|
268 |
int hot_count, |
|
269 |
const char* comment, |
|
270 |
bool is_blocking) { |
|
271 |
assert(!_lock->is_locked(), "bad locking"); |
|
272 |
||
273 |
_compile_id = compile_id; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
274 |
_method = method(); |
14816 | 275 |
_method_holder = JNIHandles::make_global(method->method_holder()->klass_holder()); |
1 | 276 |
_osr_bci = osr_bci; |
277 |
_is_blocking = is_blocking; |
|
278 |
_comp_level = comp_level; |
|
279 |
_num_inlined_bytecodes = 0; |
|
280 |
||
281 |
_is_complete = false; |
|
282 |
_is_success = false; |
|
283 |
_code_handle = NULL; |
|
284 |
||
285 |
_hot_method = NULL; |
|
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14391
diff
changeset
|
286 |
_hot_method_holder = NULL; |
1 | 287 |
_hot_count = hot_count; |
288 |
_time_queued = 0; // tidy |
|
289 |
_comment = comment; |
|
290 |
||
291 |
if (LogCompilation) { |
|
292 |
_time_queued = os::elapsed_counter(); |
|
293 |
if (hot_method.not_null()) { |
|
294 |
if (hot_method == method) { |
|
295 |
_hot_method = _method; |
|
296 |
} else { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
297 |
_hot_method = hot_method(); |
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14391
diff
changeset
|
298 |
// only add loader or mirror if different from _method_holder |
14816 | 299 |
_hot_method_holder = JNIHandles::make_global(hot_method->method_holder()->klass_holder()); |
1 | 300 |
} |
301 |
} |
|
302 |
} |
|
303 |
||
304 |
_next = NULL; |
|
305 |
} |
|
306 |
||
307 |
// ------------------------------------------------------------------ |
|
308 |
// CompileTask::code/set_code |
|
309 |
nmethod* CompileTask::code() const { |
|
310 |
if (_code_handle == NULL) return NULL; |
|
311 |
return _code_handle->code(); |
|
312 |
} |
|
313 |
void CompileTask::set_code(nmethod* nm) { |
|
314 |
if (_code_handle == NULL && nm == NULL) return; |
|
315 |
guarantee(_code_handle != NULL, ""); |
|
316 |
_code_handle->set_code(nm); |
|
317 |
if (nm == NULL) _code_handle = NULL; // drop the handle also |
|
318 |
} |
|
319 |
||
320 |
// ------------------------------------------------------------------ |
|
321 |
// CompileTask::free |
|
322 |
void CompileTask::free() { |
|
323 |
set_code(NULL); |
|
324 |
assert(!_lock->is_locked(), "Should not be locked when freed"); |
|
14588
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14391
diff
changeset
|
325 |
JNIHandles::destroy_global(_method_holder); |
8ec26d2d9339
8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents:
14391
diff
changeset
|
326 |
JNIHandles::destroy_global(_hot_method_holder); |
1 | 327 |
} |
328 |
||
329 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
330 |
void CompileTask::mark_on_stack() { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
331 |
// Mark these methods as something redefine classes cannot remove. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
332 |
_method->set_on_stack(true); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
333 |
if (_hot_method != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
334 |
_hot_method->set_on_stack(true); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
335 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
336 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
337 |
|
1 | 338 |
// ------------------------------------------------------------------ |
339 |
// CompileTask::print |
|
340 |
void CompileTask::print() { |
|
341 |
tty->print("<CompileTask compile_id=%d ", _compile_id); |
|
342 |
tty->print("method="); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
343 |
_method->print_name(tty); |
1 | 344 |
tty->print_cr(" osr_bci=%d is_blocking=%s is_complete=%s is_success=%s>", |
345 |
_osr_bci, bool_to_str(_is_blocking), |
|
346 |
bool_to_str(_is_complete), bool_to_str(_is_success)); |
|
347 |
} |
|
348 |
||
6453 | 349 |
|
1 | 350 |
// ------------------------------------------------------------------ |
351 |
// CompileTask::print_line_on_error |
|
352 |
// |
|
353 |
// This function is called by fatal error handler when the thread |
|
354 |
// causing troubles is a compiler thread. |
|
355 |
// |
|
356 |
// Do not grab any lock, do not allocate memory. |
|
357 |
// |
|
358 |
// Otherwise it's the same as CompileTask::print_line() |
|
359 |
// |
|
360 |
void CompileTask::print_line_on_error(outputStream* st, char* buf, int buflen) { |
|
361 |
// print compiler name |
|
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
362 |
st->print("%s:", CompileBroker::compiler_name(comp_level())); |
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
363 |
print_compilation(st); |
1 | 364 |
} |
365 |
||
366 |
// ------------------------------------------------------------------ |
|
367 |
// CompileTask::print_line |
|
368 |
void CompileTask::print_line() { |
|
369 |
ttyLocker ttyl; // keep the following output all in one block |
|
370 |
// print compiler name if requested |
|
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
371 |
if (CIPrintCompilerName) tty->print("%s:", CompileBroker::compiler_name(comp_level())); |
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
372 |
print_compilation(); |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
373 |
} |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
374 |
|
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
375 |
|
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
376 |
// ------------------------------------------------------------------ |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
377 |
// CompileTask::print_compilation_impl |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
378 |
void CompileTask::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
|
379 |
bool is_osr_method, int osr_bci, bool is_blocking, |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
380 |
const char* msg, bool short_form) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
381 |
if (!short_form) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
382 |
st->print("%7d ", (int) st->time_stamp().milliseconds()); // print timestamp |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
383 |
} |
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
384 |
st->print("%4d ", compile_id); // print compilation number |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
385 |
|
9975
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
386 |
// For unloaded methods the transition to zombie occurs after the |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
387 |
// method is cleared so it's impossible to report accurate |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
388 |
// information for that case. |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
389 |
bool is_synchronized = false; |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
390 |
bool has_exception_handler = false; |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
391 |
bool is_native = false; |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
392 |
if (method != NULL) { |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
393 |
is_synchronized = method->is_synchronized(); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
394 |
has_exception_handler = method->has_exception_handler(); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
395 |
is_native = method->is_native(); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
396 |
} |
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
397 |
// method attributes |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
398 |
const char compile_type = is_osr_method ? '%' : ' '; |
9975
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
399 |
const char sync_char = is_synchronized ? 's' : ' '; |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
400 |
const char exception_char = has_exception_handler ? '!' : ' '; |
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
401 |
const char blocking_char = is_blocking ? 'b' : ' '; |
9975
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
402 |
const char native_char = is_native ? 'n' : ' '; |
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
403 |
|
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
404 |
// print method attributes |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
405 |
st->print("%c%c%c%c%c ", compile_type, sync_char, exception_char, blocking_char, native_char); |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
406 |
|
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
407 |
if (TieredCompilation) { |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
408 |
if (comp_level != -1) st->print("%d ", comp_level); |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
409 |
else st->print("- "); |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
410 |
} |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
411 |
st->print(" "); // more indent |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
412 |
|
9975
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
413 |
if (method == NULL) { |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
414 |
st->print("(method)"); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
415 |
} else { |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
416 |
method->print_short_name(st); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
417 |
if (is_osr_method) { |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
418 |
st->print(" @ %d", osr_bci); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9343
diff
changeset
|
419 |
} |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
420 |
if (method->is_native()) |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
421 |
st->print(" (native)"); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
422 |
else |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
423 |
st->print(" (%d bytes)", method->code_size()); |
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
424 |
} |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
425 |
|
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
426 |
if (msg != NULL) { |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
427 |
st->print(" %s", msg); |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
428 |
} |
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
429 |
if (!short_form) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
430 |
st->cr(); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
431 |
} |
1 | 432 |
} |
433 |
||
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
434 |
// ------------------------------------------------------------------ |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
435 |
// CompileTask::print_inlining |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
436 |
void CompileTask::print_inlining(outputStream* st, ciMethod* method, int inline_level, int bci, const char* msg) { |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
437 |
// 1234567 |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
438 |
st->print(" "); // print timestamp |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
439 |
// 1234 |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
440 |
st->print(" "); // print compilation number |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
441 |
|
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
442 |
// method attributes |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
443 |
if (method->is_loaded()) { |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
444 |
const char sync_char = method->is_synchronized() ? 's' : ' '; |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
445 |
const char exception_char = method->has_exception_handlers() ? '!' : ' '; |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
446 |
const char monitors_char = method->has_monitor_bytecodes() ? 'm' : ' '; |
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
447 |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
448 |
// print method attributes |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
449 |
st->print(" %c%c%c ", sync_char, exception_char, monitors_char); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
450 |
} else { |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
451 |
// %s!bn |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
452 |
st->print(" "); // print method attributes |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
453 |
} |
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
454 |
|
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
455 |
if (TieredCompilation) { |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
456 |
st->print(" "); |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
457 |
} |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
458 |
st->print(" "); // more indent |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
459 |
st->print(" "); // initial inlining indent |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
460 |
|
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
461 |
for (int i = 0; i < inline_level; i++) st->print(" "); |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
462 |
|
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
463 |
st->print("@ %d ", bci); // print bci |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
464 |
method->print_short_name(st); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
465 |
if (method->is_loaded()) |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
466 |
st->print(" (%d bytes)", method->code_size()); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
467 |
else |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
468 |
st->print(" (not loaded)"); |
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
469 |
|
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
470 |
if (msg != NULL) { |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
471 |
st->print(" %s", msg); |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
472 |
} |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
473 |
st->cr(); |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
474 |
} |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
475 |
|
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
476 |
// ------------------------------------------------------------------ |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
477 |
// CompileTask::print_inline_indent |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
478 |
void CompileTask::print_inline_indent(int inline_level, outputStream* st) { |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
479 |
// 1234567 |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
480 |
st->print(" "); // print timestamp |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
481 |
// 1234 |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
482 |
st->print(" "); // print compilation number |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
483 |
// %s!bn |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
484 |
st->print(" "); // print method attributes |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
485 |
if (TieredCompilation) { |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
486 |
st->print(" "); |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
487 |
} |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
488 |
st->print(" "); // more indent |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
489 |
st->print(" "); // initial inlining indent |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
490 |
for (int i = 0; i < inline_level; i++) st->print(" "); |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
491 |
} |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
492 |
|
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
493 |
// ------------------------------------------------------------------ |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
494 |
// CompileTask::print_compilation |
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
495 |
void CompileTask::print_compilation(outputStream* st, const char* msg, bool short_form) { |
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
496 |
bool is_osr_method = osr_bci() != InvocationEntryBci; |
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
497 |
print_compilation_impl(st, method(), compile_id(), comp_level(), is_osr_method, osr_bci(), is_blocking(), msg, short_form); |
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8870
diff
changeset
|
498 |
} |
1 | 499 |
|
500 |
// ------------------------------------------------------------------ |
|
501 |
// CompileTask::log_task |
|
502 |
void CompileTask::log_task(xmlStream* log) { |
|
503 |
Thread* thread = Thread::current(); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
504 |
methodHandle method(thread, this->method()); |
1 | 505 |
ResourceMark rm(thread); |
506 |
||
507 |
// <task id='9' method='M' osr_bci='X' level='1' blocking='1' stamp='1.234'> |
|
15946
f688e7528dc6
8005772: Stubs report compile id -1 in phase events
neliasso
parents:
15479
diff
changeset
|
508 |
log->print(" compile_id='%d'", _compile_id); |
1 | 509 |
if (_osr_bci != CompileBroker::standard_entry_bci) { |
510 |
log->print(" compile_kind='osr'"); // same as nmethod::compile_kind |
|
511 |
} // else compile_kind='c2c' |
|
512 |
if (!method.is_null()) log->method(method); |
|
513 |
if (_osr_bci != CompileBroker::standard_entry_bci) { |
|
514 |
log->print(" osr_bci='%d'", _osr_bci); |
|
515 |
} |
|
516 |
if (_comp_level != CompLevel_highest_tier) { |
|
517 |
log->print(" level='%d'", _comp_level); |
|
518 |
} |
|
519 |
if (_is_blocking) { |
|
520 |
log->print(" blocking='1'"); |
|
521 |
} |
|
522 |
log->stamp(); |
|
523 |
} |
|
524 |
||
525 |
||
526 |
// ------------------------------------------------------------------ |
|
527 |
// CompileTask::log_task_queued |
|
528 |
void CompileTask::log_task_queued() { |
|
529 |
Thread* thread = Thread::current(); |
|
530 |
ttyLocker ttyl; |
|
531 |
ResourceMark rm(thread); |
|
532 |
||
533 |
xtty->begin_elem("task_queued"); |
|
534 |
log_task(xtty); |
|
535 |
if (_comment != NULL) { |
|
536 |
xtty->print(" comment='%s'", _comment); |
|
537 |
} |
|
538 |
if (_hot_method != NULL) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
539 |
methodHandle hot(thread, _hot_method); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
540 |
methodHandle method(thread, _method); |
1 | 541 |
if (hot() != method()) { |
542 |
xtty->method(hot); |
|
543 |
} |
|
544 |
} |
|
545 |
if (_hot_count != 0) { |
|
546 |
xtty->print(" hot_count='%d'", _hot_count); |
|
547 |
} |
|
548 |
xtty->end_elem(); |
|
549 |
} |
|
550 |
||
551 |
||
552 |
// ------------------------------------------------------------------ |
|
553 |
// CompileTask::log_task_start |
|
554 |
void CompileTask::log_task_start(CompileLog* log) { |
|
555 |
log->begin_head("task"); |
|
556 |
log_task(log); |
|
557 |
log->end_head(); |
|
558 |
} |
|
559 |
||
560 |
||
561 |
// ------------------------------------------------------------------ |
|
562 |
// CompileTask::log_task_done |
|
563 |
void CompileTask::log_task_done(CompileLog* log) { |
|
564 |
Thread* thread = Thread::current(); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
565 |
methodHandle method(thread, this->method()); |
1 | 566 |
ResourceMark rm(thread); |
567 |
||
568 |
// <task_done ... stamp='1.234'> </task> |
|
569 |
nmethod* nm = code(); |
|
570 |
log->begin_elem("task_done success='%d' nmsize='%d' count='%d'", |
|
6418 | 571 |
_is_success, nm == NULL ? 0 : nm->content_size(), |
1 | 572 |
method->invocation_count()); |
573 |
int bec = method->backedge_count(); |
|
574 |
if (bec != 0) log->print(" backedge_count='%d'", bec); |
|
575 |
// Note: "_is_complete" is about to be set, but is not. |
|
576 |
if (_num_inlined_bytecodes != 0) { |
|
577 |
log->print(" inlined_bytes='%d'", _num_inlined_bytecodes); |
|
578 |
} |
|
579 |
log->stamp(); |
|
580 |
log->end_elem(); |
|
581 |
log->tail("task"); |
|
582 |
log->clear_identities(); // next task will have different CI |
|
583 |
if (log->unflushed_count() > 2000) { |
|
584 |
log->flush(); |
|
585 |
} |
|
586 |
log->mark_file_end(); |
|
587 |
} |
|
588 |
||
589 |
||
590 |
||
591 |
// Add a CompileTask to a CompileQueue |
|
592 |
void CompileQueue::add(CompileTask* task) { |
|
593 |
assert(lock()->owned_by_self(), "must own lock"); |
|
594 |
||
595 |
task->set_next(NULL); |
|
6453 | 596 |
task->set_prev(NULL); |
1 | 597 |
|
598 |
if (_last == NULL) { |
|
599 |
// The compile queue is empty. |
|
600 |
assert(_first == NULL, "queue is empty"); |
|
601 |
_first = task; |
|
602 |
_last = task; |
|
603 |
} else { |
|
604 |
// Append the task to the queue. |
|
605 |
assert(_last->next() == NULL, "not last"); |
|
606 |
_last->set_next(task); |
|
6453 | 607 |
task->set_prev(_last); |
1 | 608 |
_last = task; |
609 |
} |
|
6453 | 610 |
++_size; |
1 | 611 |
|
612 |
// Mark the method as being in the compile queue. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
613 |
task->method()->set_queued_for_compilation(); |
1 | 614 |
|
615 |
if (CIPrintCompileQueue) { |
|
616 |
print(); |
|
617 |
} |
|
618 |
||
619 |
if (LogCompilation && xtty != NULL) { |
|
620 |
task->log_task_queued(); |
|
621 |
} |
|
622 |
||
623 |
// Notify CompilerThreads that a task is available. |
|
6453 | 624 |
lock()->notify_all(); |
1 | 625 |
} |
626 |
||
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
627 |
void CompileQueue::delete_all() { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
628 |
assert(lock()->owned_by_self(), "must own lock"); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
629 |
if (_first != NULL) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
630 |
for (CompileTask* task = _first; task != NULL; task = task->next()) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
631 |
delete task; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
632 |
} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
633 |
_first = NULL; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
634 |
} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
635 |
} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
636 |
|
1 | 637 |
// ------------------------------------------------------------------ |
638 |
// CompileQueue::get |
|
639 |
// |
|
640 |
// Get the next CompileTask from a CompileQueue |
|
641 |
CompileTask* CompileQueue::get() { |
|
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
5237
diff
changeset
|
642 |
NMethodSweeper::possibly_sweep(); |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
5237
diff
changeset
|
643 |
|
1 | 644 |
MutexLocker locker(lock()); |
20290
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
645 |
// If _first is NULL we have no more compile jobs. There are two reasons for |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
646 |
// having no compile jobs: First, we compiled everything we wanted. Second, |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
647 |
// we ran out of code cache so compilation has been disabled. In the latter |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
648 |
// case we perform code cache sweeps to free memory such that we can re-enable |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
649 |
// compilation. |
1 | 650 |
while (_first == NULL) { |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
651 |
// Exit loop if compilation is disabled forever |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
652 |
if (CompileBroker::is_compilation_disabled_forever()) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
653 |
return NULL; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
654 |
} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
655 |
|
20290
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
656 |
if (UseCodeCacheFlushing && !CompileBroker::should_compile_new_jobs()) { |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
657 |
// Wait a certain amount of time to possibly do another sweep. |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
658 |
// We must wait until stack scanning has happened so that we can |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
659 |
// transition a method's state from 'not_entrant' to 'zombie'. |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
660 |
long wait_time = NmethodSweepCheckInterval * 1000; |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
661 |
if (FLAG_IS_DEFAULT(NmethodSweepCheckInterval)) { |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
662 |
// Only one thread at a time can do sweeping. Scale the |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
663 |
// wait time according to the number of compiler threads. |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
664 |
// As a result, the next sweep is likely to happen every 100ms |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
665 |
// with an arbitrary number of threads that do sweeping. |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
666 |
wait_time = 100 * CICompilerCount; |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
667 |
} |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
668 |
bool timeout = lock()->wait(!Mutex::_no_safepoint_check_flag, wait_time); |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
669 |
if (timeout) { |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
5237
diff
changeset
|
670 |
MutexUnlocker ul(lock()); |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
5237
diff
changeset
|
671 |
NMethodSweeper::possibly_sweep(); |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
5237
diff
changeset
|
672 |
} |
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
5237
diff
changeset
|
673 |
} else { |
20290
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
674 |
// If there are no compilation tasks and we can compile new jobs |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
675 |
// (i.e., there is enough free space in the code cache) there is |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
676 |
// no need to invoke the sweeper. As a result, the hotness of methods |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
677 |
// remains unchanged. This behavior is desired, since we want to keep |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
678 |
// the stable state, i.e., we do not want to evict methods from the |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
679 |
// code cache if it is unnecessary. |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
680 |
// We need a timed wait here, since compiler threads can exit if compilation |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
681 |
// is disabled forever. We use 5 seconds wait time; the exiting of compiler threads |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
682 |
// is not critical and we do not want idle compiler threads to wake up too often. |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
683 |
lock()->wait(!Mutex::_no_safepoint_check_flag, 5*1000); |
5533
e8d9ff82ec62
6950075: nmethod sweeper should operate concurrently
never
parents:
5237
diff
changeset
|
684 |
} |
1 | 685 |
} |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
686 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
687 |
if (CompileBroker::is_compilation_disabled_forever()) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
688 |
return NULL; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
689 |
} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
690 |
|
6453 | 691 |
CompileTask* task = CompilationPolicy::policy()->select_task(this); |
692 |
remove(task); |
|
693 |
return task; |
|
694 |
} |
|
1 | 695 |
|
6453 | 696 |
void CompileQueue::remove(CompileTask* task) |
697 |
{ |
|
698 |
assert(lock()->owned_by_self(), "must own lock"); |
|
699 |
if (task->prev() != NULL) { |
|
700 |
task->prev()->set_next(task->next()); |
|
701 |
} else { |
|
702 |
// max is the first element |
|
703 |
assert(task == _first, "Sanity"); |
|
704 |
_first = task->next(); |
|
1 | 705 |
} |
706 |
||
6453 | 707 |
if (task->next() != NULL) { |
708 |
task->next()->set_prev(task->prev()); |
|
709 |
} else { |
|
710 |
// max is the last element |
|
711 |
assert(task == _last, "Sanity"); |
|
712 |
_last = task->prev(); |
|
713 |
} |
|
714 |
--_size; |
|
1 | 715 |
} |
716 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
717 |
// methods in the compile queue need to be marked as used on the stack |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
718 |
// so that they don't get reclaimed by Redefine Classes |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
719 |
void CompileQueue::mark_on_stack() { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
720 |
CompileTask* task = _first; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
721 |
while (task != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
722 |
task->mark_on_stack(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
723 |
task = task->next(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
724 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
725 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
726 |
|
1 | 727 |
// ------------------------------------------------------------------ |
728 |
// CompileQueue::print |
|
729 |
void CompileQueue::print() { |
|
730 |
tty->print_cr("Contents of %s", name()); |
|
731 |
tty->print_cr("----------------------"); |
|
732 |
CompileTask* task = _first; |
|
733 |
while (task != NULL) { |
|
734 |
task->print_line(); |
|
735 |
task = task->next(); |
|
736 |
} |
|
737 |
tty->print_cr("----------------------"); |
|
738 |
} |
|
739 |
||
740 |
CompilerCounters::CompilerCounters(const char* thread_name, int instance, TRAPS) { |
|
741 |
||
742 |
_current_method[0] = '\0'; |
|
743 |
_compile_type = CompileBroker::no_compile; |
|
744 |
||
745 |
if (UsePerfData) { |
|
746 |
ResourceMark rm; |
|
747 |
||
748 |
// create the thread instance name space string - don't create an |
|
749 |
// instance subspace if instance is -1 - keeps the adapterThread |
|
750 |
// counters from having a ".0" namespace. |
|
751 |
const char* thread_i = (instance == -1) ? thread_name : |
|
752 |
PerfDataManager::name_space(thread_name, instance); |
|
753 |
||
754 |
||
755 |
char* name = PerfDataManager::counter_name(thread_i, "method"); |
|
756 |
_perf_current_method = |
|
757 |
PerfDataManager::create_string_variable(SUN_CI, name, |
|
758 |
cmname_buffer_length, |
|
759 |
_current_method, CHECK); |
|
760 |
||
761 |
name = PerfDataManager::counter_name(thread_i, "type"); |
|
762 |
_perf_compile_type = PerfDataManager::create_variable(SUN_CI, name, |
|
763 |
PerfData::U_None, |
|
764 |
(jlong)_compile_type, |
|
765 |
CHECK); |
|
766 |
||
767 |
name = PerfDataManager::counter_name(thread_i, "time"); |
|
768 |
_perf_time = PerfDataManager::create_counter(SUN_CI, name, |
|
769 |
PerfData::U_Ticks, CHECK); |
|
770 |
||
771 |
name = PerfDataManager::counter_name(thread_i, "compiles"); |
|
772 |
_perf_compiles = PerfDataManager::create_counter(SUN_CI, name, |
|
773 |
PerfData::U_Events, CHECK); |
|
774 |
} |
|
775 |
} |
|
776 |
||
777 |
// ------------------------------------------------------------------ |
|
778 |
// CompileBroker::compilation_init |
|
779 |
// |
|
780 |
// Initialize the Compilation object |
|
781 |
void CompileBroker::compilation_init() { |
|
782 |
_last_method_compiled[0] = '\0'; |
|
783 |
||
21204
1c993523cf85
8026949: -Xint flag prints wrong warning: Initialization of C1 thread failed (no space to run compilers)
anoll
parents:
21098
diff
changeset
|
784 |
// No need to initialize compilation system if we do not use it. |
1c993523cf85
8026949: -Xint flag prints wrong warning: Initialization of C1 thread failed (no space to run compilers)
anoll
parents:
21098
diff
changeset
|
785 |
if (!UseCompiler) { |
1c993523cf85
8026949: -Xint flag prints wrong warning: Initialization of C1 thread failed (no space to run compilers)
anoll
parents:
21098
diff
changeset
|
786 |
return; |
1c993523cf85
8026949: -Xint flag prints wrong warning: Initialization of C1 thread failed (no space to run compilers)
anoll
parents:
21098
diff
changeset
|
787 |
} |
7395 | 788 |
#ifndef SHARK |
1 | 789 |
// Set the interface to the current compiler(s). |
6453 | 790 |
int c1_count = CompilationPolicy::policy()->compiler_count(CompLevel_simple); |
791 |
int c2_count = CompilationPolicy::policy()->compiler_count(CompLevel_full_optimization); |
|
1 | 792 |
#ifdef COMPILER1 |
6453 | 793 |
if (c1_count > 0) { |
794 |
_compilers[0] = new Compiler(); |
|
795 |
} |
|
1 | 796 |
#endif // COMPILER1 |
797 |
||
798 |
#ifdef COMPILER2 |
|
6453 | 799 |
if (c2_count > 0) { |
800 |
_compilers[1] = new C2Compiler(); |
|
801 |
} |
|
1 | 802 |
#endif // COMPILER2 |
803 |
||
7395 | 804 |
#else // SHARK |
805 |
int c1_count = 0; |
|
806 |
int c2_count = 1; |
|
807 |
||
808 |
_compilers[1] = new SharkCompiler(); |
|
809 |
#endif // SHARK |
|
6187 | 810 |
|
1 | 811 |
// Initialize the CompileTask free list |
812 |
_task_free_list = NULL; |
|
813 |
||
814 |
// Start the CompilerThreads |
|
6453 | 815 |
init_compiler_threads(c1_count, c2_count); |
1 | 816 |
// totalTime performance counter is always created as it is required |
817 |
// by the implementation of java.lang.management.CompilationMBean. |
|
818 |
{ |
|
819 |
EXCEPTION_MARK; |
|
820 |
_perf_total_compilation = |
|
821 |
PerfDataManager::create_counter(JAVA_CI, "totalTime", |
|
822 |
PerfData::U_Ticks, CHECK); |
|
823 |
} |
|
824 |
||
825 |
||
826 |
if (UsePerfData) { |
|
827 |
||
828 |
EXCEPTION_MARK; |
|
829 |
||
830 |
// create the jvmstat performance counters |
|
831 |
_perf_osr_compilation = |
|
832 |
PerfDataManager::create_counter(SUN_CI, "osrTime", |
|
833 |
PerfData::U_Ticks, CHECK); |
|
834 |
||
835 |
_perf_standard_compilation = |
|
836 |
PerfDataManager::create_counter(SUN_CI, "standardTime", |
|
837 |
PerfData::U_Ticks, CHECK); |
|
838 |
||
839 |
_perf_total_bailout_count = |
|
840 |
PerfDataManager::create_counter(SUN_CI, "totalBailouts", |
|
841 |
PerfData::U_Events, CHECK); |
|
842 |
||
843 |
_perf_total_invalidated_count = |
|
844 |
PerfDataManager::create_counter(SUN_CI, "totalInvalidates", |
|
845 |
PerfData::U_Events, CHECK); |
|
846 |
||
847 |
_perf_total_compile_count = |
|
848 |
PerfDataManager::create_counter(SUN_CI, "totalCompiles", |
|
849 |
PerfData::U_Events, CHECK); |
|
850 |
_perf_total_osr_compile_count = |
|
851 |
PerfDataManager::create_counter(SUN_CI, "osrCompiles", |
|
852 |
PerfData::U_Events, CHECK); |
|
853 |
||
854 |
_perf_total_standard_compile_count = |
|
855 |
PerfDataManager::create_counter(SUN_CI, "standardCompiles", |
|
856 |
PerfData::U_Events, CHECK); |
|
857 |
||
858 |
_perf_sum_osr_bytes_compiled = |
|
859 |
PerfDataManager::create_counter(SUN_CI, "osrBytes", |
|
860 |
PerfData::U_Bytes, CHECK); |
|
861 |
||
862 |
_perf_sum_standard_bytes_compiled = |
|
863 |
PerfDataManager::create_counter(SUN_CI, "standardBytes", |
|
864 |
PerfData::U_Bytes, CHECK); |
|
865 |
||
866 |
_perf_sum_nmethod_size = |
|
867 |
PerfDataManager::create_counter(SUN_CI, "nmethodSize", |
|
868 |
PerfData::U_Bytes, CHECK); |
|
869 |
||
870 |
_perf_sum_nmethod_code_size = |
|
871 |
PerfDataManager::create_counter(SUN_CI, "nmethodCodeSize", |
|
872 |
PerfData::U_Bytes, CHECK); |
|
873 |
||
874 |
_perf_last_method = |
|
875 |
PerfDataManager::create_string_variable(SUN_CI, "lastMethod", |
|
876 |
CompilerCounters::cmname_buffer_length, |
|
877 |
"", CHECK); |
|
878 |
||
879 |
_perf_last_failed_method = |
|
880 |
PerfDataManager::create_string_variable(SUN_CI, "lastFailedMethod", |
|
881 |
CompilerCounters::cmname_buffer_length, |
|
882 |
"", CHECK); |
|
883 |
||
884 |
_perf_last_invalidated_method = |
|
885 |
PerfDataManager::create_string_variable(SUN_CI, "lastInvalidatedMethod", |
|
886 |
CompilerCounters::cmname_buffer_length, |
|
887 |
"", CHECK); |
|
888 |
||
889 |
_perf_last_compile_type = |
|
890 |
PerfDataManager::create_variable(SUN_CI, "lastType", |
|
891 |
PerfData::U_None, |
|
892 |
(jlong)CompileBroker::no_compile, |
|
893 |
CHECK); |
|
894 |
||
895 |
_perf_last_compile_size = |
|
896 |
PerfDataManager::create_variable(SUN_CI, "lastSize", |
|
897 |
PerfData::U_Bytes, |
|
898 |
(jlong)CompileBroker::no_compile, |
|
899 |
CHECK); |
|
900 |
||
901 |
||
902 |
_perf_last_failed_type = |
|
903 |
PerfDataManager::create_variable(SUN_CI, "lastFailedType", |
|
904 |
PerfData::U_None, |
|
905 |
(jlong)CompileBroker::no_compile, |
|
906 |
CHECK); |
|
907 |
||
908 |
_perf_last_invalidated_type = |
|
909 |
PerfDataManager::create_variable(SUN_CI, "lastInvalidatedType", |
|
910 |
PerfData::U_None, |
|
911 |
(jlong)CompileBroker::no_compile, |
|
912 |
CHECK); |
|
913 |
} |
|
914 |
||
915 |
_initialized = true; |
|
916 |
} |
|
917 |
||
918 |
||
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
919 |
CompilerThread* CompileBroker::make_compiler_thread(const char* name, CompileQueue* queue, CompilerCounters* counters, |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
920 |
AbstractCompiler* comp, TRAPS) { |
1 | 921 |
CompilerThread* compiler_thread = NULL; |
922 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
923 |
Klass* k = |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
924 |
SystemDictionary::resolve_or_fail(vmSymbols::java_lang_Thread(), |
1 | 925 |
true, CHECK_0); |
926 |
instanceKlassHandle klass (THREAD, k); |
|
927 |
instanceHandle thread_oop = klass->allocate_instance_handle(CHECK_0); |
|
928 |
Handle string = java_lang_String::create_from_str(name, CHECK_0); |
|
929 |
||
930 |
// Initialize thread_oop to put it into the system threadGroup |
|
931 |
Handle thread_group (THREAD, Universe::system_thread_group()); |
|
932 |
JavaValue result(T_VOID); |
|
933 |
JavaCalls::call_special(&result, thread_oop, |
|
934 |
klass, |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
935 |
vmSymbols::object_initializer_name(), |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
936 |
vmSymbols::threadgroup_string_void_signature(), |
1 | 937 |
thread_group, |
938 |
string, |
|
939 |
CHECK_0); |
|
940 |
||
941 |
{ |
|
942 |
MutexLocker mu(Threads_lock, THREAD); |
|
943 |
compiler_thread = new CompilerThread(queue, counters); |
|
944 |
// At this point the new CompilerThread data-races with this startup |
|
945 |
// thread (which I believe is the primoridal thread and NOT the VM |
|
946 |
// thread). This means Java bytecodes being executed at startup can |
|
947 |
// queue compile jobs which will run at whatever default priority the |
|
948 |
// newly created CompilerThread runs at. |
|
949 |
||
950 |
||
951 |
// At this point it may be possible that no osthread was created for the |
|
952 |
// JavaThread due to lack of memory. We would have to throw an exception |
|
953 |
// in that case. However, since this must work and we do not allow |
|
954 |
// exceptions anyway, check and abort if this fails. |
|
955 |
||
956 |
if (compiler_thread == NULL || compiler_thread->osthread() == NULL){ |
|
957 |
vm_exit_during_initialization("java.lang.OutOfMemoryError", |
|
22758
c6b6abb73544
7182040: volano29 limited by os resource on Linux - need better diagnostic message
iklam
parents:
22520
diff
changeset
|
958 |
os::native_thread_creation_failed_msg()); |
1 | 959 |
} |
960 |
||
961 |
java_lang_Thread::set_thread(thread_oop(), compiler_thread); |
|
962 |
||
963 |
// Note that this only sets the JavaThread _priority field, which by |
|
964 |
// definition is limited to Java priorities and not OS priorities. |
|
965 |
// The os-priority is set in the CompilerThread startup code itself |
|
11601
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11198
diff
changeset
|
966 |
|
1 | 967 |
java_lang_Thread::set_priority(thread_oop(), NearMaxPriority); |
11601
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11198
diff
changeset
|
968 |
|
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11198
diff
changeset
|
969 |
// Note that we cannot call os::set_priority because it expects Java |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11198
diff
changeset
|
970 |
// priorities and we are *explicitly* using OS priorities so that it's |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11198
diff
changeset
|
971 |
// possible to set the compiler thread priority higher than any Java |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11198
diff
changeset
|
972 |
// thread. |
1 | 973 |
|
11601
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11198
diff
changeset
|
974 |
int native_prio = CompilerThreadPriority; |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11198
diff
changeset
|
975 |
if (native_prio == -1) { |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11198
diff
changeset
|
976 |
if (UseCriticalCompilerThreadPriority) { |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11198
diff
changeset
|
977 |
native_prio = os::java_to_os_priority[CriticalPriority]; |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11198
diff
changeset
|
978 |
} else { |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11198
diff
changeset
|
979 |
native_prio = os::java_to_os_priority[NearMaxPriority]; |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11198
diff
changeset
|
980 |
} |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11198
diff
changeset
|
981 |
} |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11198
diff
changeset
|
982 |
os::set_native_priority(compiler_thread, native_prio); |
1 | 983 |
|
984 |
java_lang_Thread::set_daemon(thread_oop()); |
|
985 |
||
986 |
compiler_thread->set_threadObj(thread_oop()); |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
987 |
compiler_thread->set_compiler(comp); |
1 | 988 |
Threads::add(compiler_thread); |
989 |
Thread::start(compiler_thread); |
|
990 |
} |
|
11601
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11198
diff
changeset
|
991 |
|
1 | 992 |
// Let go of Threads_lock before yielding |
993 |
os::yield(); // make sure that the compiler thread is started early (especially helpful on SOLARIS) |
|
994 |
||
995 |
return compiler_thread; |
|
996 |
} |
|
997 |
||
998 |
||
6453 | 999 |
void CompileBroker::init_compiler_threads(int c1_compiler_count, int c2_compiler_count) { |
1 | 1000 |
EXCEPTION_MARK; |
22853
308672304981
8028767: PPC64: (part 121): smaller shared changes needed to build C2
goetz
parents:
22851
diff
changeset
|
1001 |
#if !defined(ZERO) && !defined(SHARK) |
6453 | 1002 |
assert(c2_compiler_count > 0 || c1_compiler_count > 0, "No compilers?"); |
9103 | 1003 |
#endif // !ZERO && !SHARK |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1004 |
// Initialize the compilation queue |
6453 | 1005 |
if (c2_compiler_count > 0) { |
1006 |
_c2_method_queue = new CompileQueue("C2MethodQueue", MethodCompileQueue_lock); |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1007 |
_compilers[1]->set_num_compiler_threads(c2_compiler_count); |
6453 | 1008 |
} |
1009 |
if (c1_compiler_count > 0) { |
|
1010 |
_c1_method_queue = new CompileQueue("C1MethodQueue", MethodCompileQueue_lock); |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1011 |
_compilers[0]->set_num_compiler_threads(c1_compiler_count); |
6453 | 1012 |
} |
1 | 1013 |
|
6453 | 1014 |
int compiler_count = c1_compiler_count + c2_compiler_count; |
1015 |
||
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1016 |
_compiler_threads = |
13195 | 1017 |
new (ResourceObj::C_HEAP, mtCompiler) GrowableArray<CompilerThread*>(compiler_count, true); |
1 | 1018 |
|
1019 |
char name_buffer[256]; |
|
6453 | 1020 |
for (int i = 0; i < c2_compiler_count; i++) { |
1 | 1021 |
// Create a name for our thread. |
6453 | 1022 |
sprintf(name_buffer, "C2 CompilerThread%d", i); |
1 | 1023 |
CompilerCounters* counters = new CompilerCounters("compilerThread", i, CHECK); |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1024 |
// Shark and C2 |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1025 |
CompilerThread* new_thread = make_compiler_thread(name_buffer, _c2_method_queue, counters, _compilers[1], CHECK); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1026 |
_compiler_threads->append(new_thread); |
1 | 1027 |
} |
6453 | 1028 |
|
1029 |
for (int i = c2_compiler_count; i < compiler_count; i++) { |
|
1030 |
// Create a name for our thread. |
|
1031 |
sprintf(name_buffer, "C1 CompilerThread%d", i); |
|
1032 |
CompilerCounters* counters = new CompilerCounters("compilerThread", i, CHECK); |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1033 |
// C1 |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1034 |
CompilerThread* new_thread = make_compiler_thread(name_buffer, _c1_method_queue, counters, _compilers[0], CHECK); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1035 |
_compiler_threads->append(new_thread); |
6453 | 1036 |
} |
1037 |
||
1 | 1038 |
if (UsePerfData) { |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1039 |
PerfDataManager::create_constant(SUN_CI, "threads", PerfData::U_Bytes, compiler_count, CHECK); |
1 | 1040 |
} |
1041 |
} |
|
1042 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1043 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1044 |
// Set the methods on the stack as on_stack so that redefine classes doesn't |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1045 |
// reclaim them |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1046 |
void CompileBroker::mark_on_stack() { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1047 |
if (_c2_method_queue != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1048 |
_c2_method_queue->mark_on_stack(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1049 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1050 |
if (_c1_method_queue != NULL) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1051 |
_c1_method_queue->mark_on_stack(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1052 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1053 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1054 |
|
1 | 1055 |
// ------------------------------------------------------------------ |
1056 |
// CompileBroker::compile_method |
|
1057 |
// |
|
1058 |
// Request compilation of a method. |
|
1059 |
void CompileBroker::compile_method_base(methodHandle method, |
|
1060 |
int osr_bci, |
|
1061 |
int comp_level, |
|
1062 |
methodHandle hot_method, |
|
1063 |
int hot_count, |
|
1064 |
const char* comment, |
|
11572
84afef481892
7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents:
11198
diff
changeset
|
1065 |
Thread* thread) { |
1 | 1066 |
// do nothing if compiler thread(s) is not available |
1067 |
if (!_initialized ) { |
|
1068 |
return; |
|
1069 |
} |
|
1070 |
||
1071 |
guarantee(!method->is_abstract(), "cannot compile abstract methods"); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1072 |
assert(method->method_holder()->oop_is_instance(), |
1 | 1073 |
"sanity check"); |
14391
df0a1573d5bd
8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents:
13964
diff
changeset
|
1074 |
assert(!method->method_holder()->is_not_initialized(), |
1 | 1075 |
"method holder must be initialized"); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
1076 |
assert(!method->is_method_handle_intrinsic(), "do not enqueue these guys"); |
1 | 1077 |
|
1078 |
if (CIPrintRequests) { |
|
1079 |
tty->print("request: "); |
|
1080 |
method->print_short_name(tty); |
|
1081 |
if (osr_bci != InvocationEntryBci) { |
|
1082 |
tty->print(" osr_bci: %d", osr_bci); |
|
1083 |
} |
|
1084 |
tty->print(" comment: %s count: %d", comment, hot_count); |
|
1085 |
if (!hot_method.is_null()) { |
|
1086 |
tty->print(" hot: "); |
|
1087 |
if (hot_method() != method()) { |
|
1088 |
hot_method->print_short_name(tty); |
|
1089 |
} else { |
|
1090 |
tty->print("yes"); |
|
1091 |
} |
|
1092 |
} |
|
1093 |
tty->cr(); |
|
1094 |
} |
|
1095 |
||
1096 |
// A request has been made for compilation. Before we do any |
|
1097 |
// real work, check to see if the method has been compiled |
|
1098 |
// in the meantime with a definitive result. |
|
1099 |
if (compilation_is_complete(method, osr_bci, comp_level)) { |
|
1100 |
return; |
|
1101 |
} |
|
1102 |
||
8870 | 1103 |
#ifndef PRODUCT |
1104 |
if (osr_bci != -1 && !FLAG_IS_DEFAULT(OSROnlyBCI)) { |
|
1105 |
if ((OSROnlyBCI > 0) ? (OSROnlyBCI != osr_bci) : (-OSROnlyBCI == osr_bci)) { |
|
1106 |
// Positive OSROnlyBCI means only compile that bci. Negative means don't compile that BCI. |
|
1107 |
return; |
|
1108 |
} |
|
1109 |
} |
|
1110 |
#endif |
|
6453 | 1111 |
|
1 | 1112 |
// If this method is already in the compile queue, then |
1113 |
// we do not block the current thread. |
|
1114 |
if (compilation_is_in_queue(method, osr_bci)) { |
|
1115 |
// We may want to decay our counter a bit here to prevent |
|
1116 |
// multiple denied requests for compilation. This is an |
|
1117 |
// open compilation policy issue. Note: The other possibility, |
|
1118 |
// in the case that this is a blocking compile request, is to have |
|
1119 |
// all subsequent blocking requesters wait for completion of |
|
1120 |
// ongoing compiles. Note that in this case we'll need a protocol |
|
1121 |
// for freeing the associated compile tasks. [Or we could have |
|
1122 |
// a single static monitor on which all these waiters sleep.] |
|
1123 |
return; |
|
1124 |
} |
|
1125 |
||
9343
cf46e123429d
7037756: Deadlock in compiler thread similiar to 6789220
johnc
parents:
9138
diff
changeset
|
1126 |
// If the requesting thread is holding the pending list lock |
cf46e123429d
7037756: Deadlock in compiler thread similiar to 6789220
johnc
parents:
9138
diff
changeset
|
1127 |
// then we just return. We can't risk blocking while holding |
cf46e123429d
7037756: Deadlock in compiler thread similiar to 6789220
johnc
parents:
9138
diff
changeset
|
1128 |
// the pending list lock or a 3-way deadlock may occur |
cf46e123429d
7037756: Deadlock in compiler thread similiar to 6789220
johnc
parents:
9138
diff
changeset
|
1129 |
// between the reference handler thread, a GC (instigated |
cf46e123429d
7037756: Deadlock in compiler thread similiar to 6789220
johnc
parents:
9138
diff
changeset
|
1130 |
// by a compiler thread), and compiled method registration. |
13738
d67be49a5beb
7195833: NPG: Rename instanceClassLoaderKlass, instanceRefKlass and instanceMirrorKlass
coleenp
parents:
13728
diff
changeset
|
1131 |
if (InstanceRefKlass::owns_pending_list_lock(JavaThread::current())) { |
9343
cf46e123429d
7037756: Deadlock in compiler thread similiar to 6789220
johnc
parents:
9138
diff
changeset
|
1132 |
return; |
cf46e123429d
7037756: Deadlock in compiler thread similiar to 6789220
johnc
parents:
9138
diff
changeset
|
1133 |
} |
cf46e123429d
7037756: Deadlock in compiler thread similiar to 6789220
johnc
parents:
9138
diff
changeset
|
1134 |
|
1 | 1135 |
// Outputs from the following MutexLocker block: |
1136 |
CompileTask* task = NULL; |
|
1137 |
bool blocking = false; |
|
6453 | 1138 |
CompileQueue* queue = compile_queue(comp_level); |
1 | 1139 |
|
1140 |
// Acquire our lock. |
|
1141 |
{ |
|
11572
84afef481892
7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents:
11198
diff
changeset
|
1142 |
MutexLocker locker(queue->lock(), thread); |
1 | 1143 |
|
1144 |
// Make sure the method has not slipped into the queues since |
|
1145 |
// last we checked; note that those checks were "fast bail-outs". |
|
1146 |
// Here we need to be more careful, see 14012000 below. |
|
1147 |
if (compilation_is_in_queue(method, osr_bci)) { |
|
1148 |
return; |
|
1149 |
} |
|
1150 |
||
1151 |
// We need to check again to see if the compilation has |
|
1152 |
// completed. A previous compilation may have registered |
|
1153 |
// some result. |
|
1154 |
if (compilation_is_complete(method, osr_bci, comp_level)) { |
|
1155 |
return; |
|
1156 |
} |
|
1157 |
||
1158 |
// We now know that this compilation is not pending, complete, |
|
1159 |
// or prohibited. Assign a compile_id to this compilation |
|
1160 |
// and check to see if it is in our [Start..Stop) range. |
|
22247 | 1161 |
int compile_id = assign_compile_id(method, osr_bci); |
1 | 1162 |
if (compile_id == 0) { |
1163 |
// The compilation falls outside the allowed range. |
|
1164 |
return; |
|
1165 |
} |
|
1166 |
||
1167 |
// Should this thread wait for completion of the compile? |
|
1168 |
blocking = is_compile_blocking(method, osr_bci); |
|
1169 |
||
1170 |
// We will enter the compilation in the queue. |
|
1171 |
// 14012000: Note that this sets the queued_for_compile bits in |
|
1172 |
// the target method. We can now reason that a method cannot be |
|
1173 |
// queued for compilation more than once, as follows: |
|
1174 |
// Before a thread queues a task for compilation, it first acquires |
|
1175 |
// the compile queue lock, then checks if the method's queued bits |
|
1176 |
// are set or it has already been compiled. Thus there can not be two |
|
1177 |
// instances of a compilation task for the same method on the |
|
1178 |
// compilation queue. Consider now the case where the compilation |
|
1179 |
// thread has already removed a task for that method from the queue |
|
1180 |
// and is in the midst of compiling it. In this case, the |
|
1181 |
// queued_for_compile bits must be set in the method (and these |
|
1182 |
// will be visible to the current thread, since the bits were set |
|
1183 |
// under protection of the compile queue lock, which we hold now. |
|
1184 |
// When the compilation completes, the compiler thread first sets |
|
1185 |
// the compilation result and then clears the queued_for_compile |
|
1186 |
// bits. Neither of these actions are protected by a barrier (or done |
|
1187 |
// under the protection of a lock), so the only guarantee we have |
|
1188 |
// (on machines with TSO (Total Store Order)) is that these values |
|
1189 |
// will update in that order. As a result, the only combinations of |
|
1190 |
// these bits that the current thread will see are, in temporal order: |
|
1191 |
// <RESULT, QUEUE> : |
|
1192 |
// <0, 1> : in compile queue, but not yet compiled |
|
1193 |
// <1, 1> : compiled but queue bit not cleared |
|
1194 |
// <1, 0> : compiled and queue bit cleared |
|
1195 |
// Because we first check the queue bits then check the result bits, |
|
1196 |
// we are assured that we cannot introduce a duplicate task. |
|
1197 |
// Note that if we did the tests in the reverse order (i.e. check |
|
1198 |
// result then check queued bit), we could get the result bit before |
|
1199 |
// the compilation completed, and the queue bit after the compilation |
|
1200 |
// completed, and end up introducing a "duplicate" (redundant) task. |
|
1201 |
// In that case, the compiler thread should first check if a method |
|
1202 |
// has already been compiled before trying to compile it. |
|
1203 |
// NOTE: in the event that there are multiple compiler threads and |
|
1204 |
// there is de-optimization/recompilation, things will get hairy, |
|
1205 |
// and in that case it's best to protect both the testing (here) of |
|
1206 |
// these bits, and their updating (here and elsewhere) under a |
|
1207 |
// common lock. |
|
6453 | 1208 |
task = create_compile_task(queue, |
1 | 1209 |
compile_id, method, |
1210 |
osr_bci, comp_level, |
|
1211 |
hot_method, hot_count, comment, |
|
1212 |
blocking); |
|
1213 |
} |
|
1214 |
||
1215 |
if (blocking) { |
|
1216 |
wait_for_completion(task); |
|
1217 |
} |
|
1218 |
} |
|
1219 |
||
1220 |
||
1221 |
nmethod* CompileBroker::compile_method(methodHandle method, int osr_bci, |
|
6453 | 1222 |
int comp_level, |
1 | 1223 |
methodHandle hot_method, int hot_count, |
11572
84afef481892
7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents:
11198
diff
changeset
|
1224 |
const char* comment, Thread* THREAD) { |
1 | 1225 |
// make sure arguments make sense |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1226 |
assert(method->method_holder()->oop_is_instance(), "not an instance method"); |
1 | 1227 |
assert(osr_bci == InvocationEntryBci || (0 <= osr_bci && osr_bci < method->code_size()), "bci out of range"); |
1228 |
assert(!method->is_abstract() && (osr_bci == InvocationEntryBci || !method->is_native()), "cannot compile abstract/native methods"); |
|
14391
df0a1573d5bd
8000725: NPG: method_holder() and pool_holder() and pool_holder field should be InstanceKlass
coleenp
parents:
13964
diff
changeset
|
1229 |
assert(!method->method_holder()->is_not_initialized(), "method holder must be initialized"); |
16689
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1230 |
// allow any levels for WhiteBox |
efce070b8d42
8007288: Additional WB API for compiler's testing
iignatyev
parents:
16611
diff
changeset
|
1231 |
assert(WhiteBoxAPI || TieredCompilation || comp_level == CompLevel_highest_tier, "only CompLevel_highest_tier must be used in non-tiered"); |
1 | 1232 |
// return quickly if possible |
1233 |
||
1234 |
// lock, make sure that the compilation |
|
1235 |
// isn't prohibited in a straightforward way. |
|
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
1236 |
AbstractCompiler *comp = CompileBroker::compiler(comp_level); |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
1237 |
if (comp == NULL || !comp->can_compile_method(method) || |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
1238 |
compilation_is_prohibited(method, osr_bci, comp_level)) { |
1 | 1239 |
return NULL; |
1240 |
} |
|
1241 |
||
1242 |
if (osr_bci == InvocationEntryBci) { |
|
1243 |
// standard compilation |
|
1244 |
nmethod* method_code = method->code(); |
|
6453 | 1245 |
if (method_code != NULL) { |
1246 |
if (compilation_is_complete(method, osr_bci, comp_level)) { |
|
1247 |
return method_code; |
|
1248 |
} |
|
1 | 1249 |
} |
20290
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
1250 |
if (method->is_not_compilable(comp_level)) { |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
1251 |
return NULL; |
4750 | 1252 |
} |
1 | 1253 |
} else { |
1254 |
// osr compilation |
|
1255 |
#ifndef TIERED |
|
1256 |
// seems like an assert of dubious value |
|
6453 | 1257 |
assert(comp_level == CompLevel_highest_tier, |
1 | 1258 |
"all OSR compiles are assumed to be at a single compilation lavel"); |
1259 |
#endif // TIERED |
|
6453 | 1260 |
// We accept a higher level osr method |
1261 |
nmethod* nm = method->lookup_osr_nmethod_for(osr_bci, comp_level, false); |
|
1 | 1262 |
if (nm != NULL) return nm; |
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
1263 |
if (method->is_not_osr_compilable(comp_level)) return NULL; |
1 | 1264 |
} |
1265 |
||
1266 |
assert(!HAS_PENDING_EXCEPTION, "No exception should be present"); |
|
1267 |
// some prerequisites that are compiler specific |
|
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
1268 |
if (comp->is_c2() || comp->is_shark()) { |
11572
84afef481892
7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents:
11198
diff
changeset
|
1269 |
method->constants()->resolve_string_constants(CHECK_AND_CLEAR_NULL); |
1 | 1270 |
// Resolve all classes seen in the signature of the method |
1271 |
// we are compiling. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1272 |
Method::load_signature_classes(method, CHECK_AND_CLEAR_NULL); |
1 | 1273 |
} |
1274 |
||
1275 |
// If the method is native, do the lookup in the thread requesting |
|
1276 |
// the compilation. Native lookups can load code, which is not |
|
1277 |
// permitted during compilation. |
|
1278 |
// |
|
1279 |
// Note: A native method implies non-osr compilation which is |
|
1280 |
// checked with an assertion at the entry of this method. |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
1281 |
if (method->is_native() && !method->is_method_handle_intrinsic()) { |
1 | 1282 |
bool in_base_library; |
1283 |
address adr = NativeLookup::lookup(method, in_base_library, THREAD); |
|
1284 |
if (HAS_PENDING_EXCEPTION) { |
|
1285 |
// In case of an exception looking up the method, we just forget |
|
1286 |
// about it. The interpreter will kick-in and throw the exception. |
|
1287 |
method->set_not_compilable(); // implies is_not_osr_compilable() |
|
1288 |
CLEAR_PENDING_EXCEPTION; |
|
1289 |
return NULL; |
|
1290 |
} |
|
1291 |
assert(method->has_native_function(), "must have native code by now"); |
|
1292 |
} |
|
1293 |
||
1294 |
// RedefineClasses() has replaced this method; just return |
|
1295 |
if (method->is_old()) { |
|
1296 |
return NULL; |
|
1297 |
} |
|
1298 |
||
1299 |
// JVMTI -- post_compile_event requires jmethod_id() that may require |
|
1300 |
// a lock the compiling thread can not acquire. Prefetch it here. |
|
1301 |
if (JvmtiExport::should_post_compiled_method_load()) { |
|
1302 |
method->jmethod_id(); |
|
1303 |
} |
|
1304 |
||
1305 |
// do the compilation |
|
1306 |
if (method->is_native()) { |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13195
diff
changeset
|
1307 |
if (!PreferInterpreterNativeStubs || method->is_method_handle_intrinsic()) { |
21098
1820670a3362
8026407: VM crashes on linux-ppc and linux-i586 when there is not enough ReservedCodeCacheSize specified
anoll
parents:
20707
diff
changeset
|
1308 |
// To properly handle the appendix argument for out-of-line calls we are using a small trampoline that |
1820670a3362
8026407: VM crashes on linux-ppc and linux-i586 when there is not enough ReservedCodeCacheSize specified
anoll
parents:
20707
diff
changeset
|
1309 |
// pops off the appendix argument and jumps to the target (see gen_special_dispatch in SharedRuntime). |
1820670a3362
8026407: VM crashes on linux-ppc and linux-i586 when there is not enough ReservedCodeCacheSize specified
anoll
parents:
20707
diff
changeset
|
1310 |
// |
1820670a3362
8026407: VM crashes on linux-ppc and linux-i586 when there is not enough ReservedCodeCacheSize specified
anoll
parents:
20707
diff
changeset
|
1311 |
// Since normal compiled-to-compiled calls are not able to handle such a thing we MUST generate an adapter |
1820670a3362
8026407: VM crashes on linux-ppc and linux-i586 when there is not enough ReservedCodeCacheSize specified
anoll
parents:
20707
diff
changeset
|
1312 |
// in this case. If we can't generate one and use it we can not execute the out-of-line method handle calls. |
22247 | 1313 |
AdapterHandlerLibrary::create_native_wrapper(method); |
1 | 1314 |
} else { |
1315 |
return NULL; |
|
1316 |
} |
|
1317 |
} else { |
|
21098
1820670a3362
8026407: VM crashes on linux-ppc and linux-i586 when there is not enough ReservedCodeCacheSize specified
anoll
parents:
20707
diff
changeset
|
1318 |
// If the compiler is shut off due to code cache getting full |
1820670a3362
8026407: VM crashes on linux-ppc and linux-i586 when there is not enough ReservedCodeCacheSize specified
anoll
parents:
20707
diff
changeset
|
1319 |
// fail out now so blocking compiles dont hang the java thread |
1820670a3362
8026407: VM crashes on linux-ppc and linux-i586 when there is not enough ReservedCodeCacheSize specified
anoll
parents:
20707
diff
changeset
|
1320 |
if (!should_compile_new_jobs()) { |
1820670a3362
8026407: VM crashes on linux-ppc and linux-i586 when there is not enough ReservedCodeCacheSize specified
anoll
parents:
20707
diff
changeset
|
1321 |
CompilationPolicy::policy()->delay_compilation(method()); |
1820670a3362
8026407: VM crashes on linux-ppc and linux-i586 when there is not enough ReservedCodeCacheSize specified
anoll
parents:
20707
diff
changeset
|
1322 |
return NULL; |
1820670a3362
8026407: VM crashes on linux-ppc and linux-i586 when there is not enough ReservedCodeCacheSize specified
anoll
parents:
20707
diff
changeset
|
1323 |
} |
11572
84afef481892
7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents:
11198
diff
changeset
|
1324 |
compile_method_base(method, osr_bci, comp_level, hot_method, hot_count, comment, THREAD); |
1 | 1325 |
} |
1326 |
||
1327 |
// return requested nmethod |
|
6453 | 1328 |
// We accept a higher level osr method |
1329 |
return osr_bci == InvocationEntryBci ? method->code() : method->lookup_osr_nmethod_for(osr_bci, comp_level, false); |
|
1 | 1330 |
} |
1331 |
||
1332 |
||
1333 |
// ------------------------------------------------------------------ |
|
1334 |
// CompileBroker::compilation_is_complete |
|
1335 |
// |
|
1336 |
// See if compilation of this method is already complete. |
|
1337 |
bool CompileBroker::compilation_is_complete(methodHandle method, |
|
1338 |
int osr_bci, |
|
1339 |
int comp_level) { |
|
1340 |
bool is_osr = (osr_bci != standard_entry_bci); |
|
1341 |
if (is_osr) { |
|
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
1342 |
if (method->is_not_osr_compilable(comp_level)) { |
1 | 1343 |
return true; |
1344 |
} else { |
|
6453 | 1345 |
nmethod* result = method->lookup_osr_nmethod_for(osr_bci, comp_level, true); |
1 | 1346 |
return (result != NULL); |
1347 |
} |
|
1348 |
} else { |
|
1349 |
if (method->is_not_compilable(comp_level)) { |
|
1350 |
return true; |
|
1351 |
} else { |
|
1352 |
nmethod* result = method->code(); |
|
1353 |
if (result == NULL) return false; |
|
6453 | 1354 |
return comp_level == result->comp_level(); |
1 | 1355 |
} |
1356 |
} |
|
1357 |
} |
|
1358 |
||
1359 |
||
1360 |
// ------------------------------------------------------------------ |
|
1361 |
// CompileBroker::compilation_is_in_queue |
|
1362 |
// |
|
1363 |
// See if this compilation is already requested. |
|
1364 |
// |
|
1365 |
// Implementation note: there is only a single "is in queue" bit |
|
1366 |
// for each method. This means that the check below is overly |
|
1367 |
// conservative in the sense that an osr compilation in the queue |
|
1368 |
// will block a normal compilation from entering the queue (and vice |
|
1369 |
// versa). This can be remedied by a full queue search to disambiguate |
|
1370 |
// cases. If it is deemed profitible, this may be done. |
|
1371 |
bool CompileBroker::compilation_is_in_queue(methodHandle method, |
|
6453 | 1372 |
int osr_bci) { |
1 | 1373 |
return method->queued_for_compilation(); |
1374 |
} |
|
1375 |
||
1376 |
// ------------------------------------------------------------------ |
|
1377 |
// CompileBroker::compilation_is_prohibited |
|
1378 |
// |
|
1379 |
// See if this compilation is not allowed. |
|
1380 |
bool CompileBroker::compilation_is_prohibited(methodHandle method, int osr_bci, int comp_level) { |
|
1381 |
bool is_native = method->is_native(); |
|
1382 |
// Some compilers may not support the compilation of natives. |
|
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
1383 |
AbstractCompiler *comp = compiler(comp_level); |
1 | 1384 |
if (is_native && |
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
1385 |
(!CICompileNatives || comp == NULL || !comp->supports_native())) { |
6453 | 1386 |
method->set_not_compilable_quietly(comp_level); |
1 | 1387 |
return true; |
1388 |
} |
|
1389 |
||
1390 |
bool is_osr = (osr_bci != standard_entry_bci); |
|
1391 |
// Some compilers may not support on stack replacement. |
|
1392 |
if (is_osr && |
|
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
1393 |
(!CICompileOSR || comp == NULL || !comp->supports_osr())) { |
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
1394 |
method->set_not_osr_compilable(comp_level); |
1 | 1395 |
return true; |
1396 |
} |
|
1397 |
||
1398 |
// The method may be explicitly excluded by the user. |
|
1399 |
bool quietly; |
|
1400 |
if (CompilerOracle::should_exclude(method, quietly)) { |
|
1401 |
if (!quietly) { |
|
1402 |
// This does not happen quietly... |
|
1403 |
ResourceMark rm; |
|
1404 |
tty->print("### Excluding %s:%s", |
|
1405 |
method->is_native() ? "generation of native wrapper" : "compile", |
|
1406 |
(method->is_static() ? " static" : "")); |
|
1407 |
method->print_short_name(tty); |
|
1408 |
tty->cr(); |
|
1409 |
} |
|
15479 | 1410 |
method->set_not_compilable(CompLevel_all, !quietly, "excluded by CompilerOracle"); |
1 | 1411 |
} |
1412 |
||
1413 |
return false; |
|
1414 |
} |
|
1415 |
||
22247 | 1416 |
/** |
1417 |
* Generate serialized IDs for compilation requests. If certain debugging flags are used |
|
1418 |
* and the ID is not within the specified range, the method is not compiled and 0 is returned. |
|
1419 |
* The function also allows to generate separate compilation IDs for OSR compilations. |
|
1420 |
*/ |
|
1421 |
int CompileBroker::assign_compile_id(methodHandle method, int osr_bci) { |
|
1422 |
#ifdef ASSERT |
|
1 | 1423 |
bool is_osr = (osr_bci != standard_entry_bci); |
22247 | 1424 |
int id; |
1425 |
if (method->is_native()) { |
|
1426 |
assert(!is_osr, "can't be osr"); |
|
1427 |
// Adapters, native wrappers and method handle intrinsics |
|
1428 |
// should be generated always. |
|
1429 |
return Atomic::add(1, &_compilation_id); |
|
1430 |
} else if (CICountOSR && is_osr) { |
|
1431 |
id = Atomic::add(1, &_osr_compilation_id); |
|
1432 |
if (CIStartOSR <= id && id < CIStopOSR) { |
|
1 | 1433 |
return id; |
1434 |
} |
|
1435 |
} else { |
|
22247 | 1436 |
id = Atomic::add(1, &_compilation_id); |
1437 |
if (CIStart <= id && id < CIStop) { |
|
1 | 1438 |
return id; |
1439 |
} |
|
1440 |
} |
|
1441 |
||
1442 |
// Method was not in the appropriate compilation range. |
|
4756
da88c27a9241
6923043: failed nightly tests which use -XX:+PrintCompilation -Xcomp -XX:CompileOnly
kvn
parents:
4750
diff
changeset
|
1443 |
method->set_not_compilable_quietly(); |
1 | 1444 |
return 0; |
22247 | 1445 |
#else |
1446 |
// CICountOSR is a develop flag and set to 'false' by default. In a product built, |
|
1447 |
// only _compilation_id is incremented. |
|
1448 |
return Atomic::add(1, &_compilation_id); |
|
1449 |
#endif |
|
1 | 1450 |
} |
1451 |
||
1452 |
||
1453 |
// ------------------------------------------------------------------ |
|
1454 |
// CompileBroker::is_compile_blocking |
|
1455 |
// |
|
1456 |
// Should the current thread be blocked until this compilation request |
|
1457 |
// has been fulfilled? |
|
1458 |
bool CompileBroker::is_compile_blocking(methodHandle method, int osr_bci) { |
|
13738
d67be49a5beb
7195833: NPG: Rename instanceClassLoaderKlass, instanceRefKlass and instanceMirrorKlass
coleenp
parents:
13728
diff
changeset
|
1459 |
assert(!InstanceRefKlass::owns_pending_list_lock(JavaThread::current()), "possible deadlock"); |
9343
cf46e123429d
7037756: Deadlock in compiler thread similiar to 6789220
johnc
parents:
9138
diff
changeset
|
1460 |
return !BackgroundCompilation; |
1 | 1461 |
} |
1462 |
||
1463 |
||
1464 |
// ------------------------------------------------------------------ |
|
1465 |
// CompileBroker::preload_classes |
|
1466 |
void CompileBroker::preload_classes(methodHandle method, TRAPS) { |
|
1467 |
// Move this code over from c1_Compiler.cpp |
|
1468 |
ShouldNotReachHere(); |
|
1469 |
} |
|
1470 |
||
1471 |
||
1472 |
// ------------------------------------------------------------------ |
|
1473 |
// CompileBroker::create_compile_task |
|
1474 |
// |
|
1475 |
// Create a CompileTask object representing the current request for |
|
1476 |
// compilation. Add this task to the queue. |
|
1477 |
CompileTask* CompileBroker::create_compile_task(CompileQueue* queue, |
|
1478 |
int compile_id, |
|
1479 |
methodHandle method, |
|
1480 |
int osr_bci, |
|
1481 |
int comp_level, |
|
1482 |
methodHandle hot_method, |
|
1483 |
int hot_count, |
|
1484 |
const char* comment, |
|
1485 |
bool blocking) { |
|
1486 |
CompileTask* new_task = allocate_task(); |
|
1487 |
new_task->initialize(compile_id, method, osr_bci, comp_level, |
|
1488 |
hot_method, hot_count, comment, |
|
1489 |
blocking); |
|
1490 |
queue->add(new_task); |
|
1491 |
return new_task; |
|
1492 |
} |
|
1493 |
||
1494 |
||
1495 |
// ------------------------------------------------------------------ |
|
1496 |
// CompileBroker::allocate_task |
|
1497 |
// |
|
1498 |
// Allocate a CompileTask, from the free list if possible. |
|
1499 |
CompileTask* CompileBroker::allocate_task() { |
|
1500 |
MutexLocker locker(CompileTaskAlloc_lock); |
|
1501 |
CompileTask* task = NULL; |
|
1502 |
if (_task_free_list != NULL) { |
|
1503 |
task = _task_free_list; |
|
1504 |
_task_free_list = task->next(); |
|
1505 |
task->set_next(NULL); |
|
1506 |
} else { |
|
1507 |
task = new CompileTask(); |
|
1508 |
task->set_next(NULL); |
|
1509 |
} |
|
1510 |
return task; |
|
1511 |
} |
|
1512 |
||
1513 |
||
1514 |
// ------------------------------------------------------------------ |
|
1515 |
// CompileBroker::free_task |
|
1516 |
// |
|
1517 |
// Add a task to the free list. |
|
1518 |
void CompileBroker::free_task(CompileTask* task) { |
|
1519 |
MutexLocker locker(CompileTaskAlloc_lock); |
|
1520 |
task->free(); |
|
1521 |
task->set_next(_task_free_list); |
|
1522 |
_task_free_list = task; |
|
1523 |
} |
|
1524 |
||
1525 |
||
1526 |
// ------------------------------------------------------------------ |
|
1527 |
// CompileBroker::wait_for_completion |
|
1528 |
// |
|
1529 |
// Wait for the given method CompileTask to complete. |
|
1530 |
void CompileBroker::wait_for_completion(CompileTask* task) { |
|
1531 |
if (CIPrintCompileQueue) { |
|
1532 |
tty->print_cr("BLOCKING FOR COMPILE"); |
|
1533 |
} |
|
1534 |
||
1535 |
assert(task->is_blocking(), "can only wait on blocking task"); |
|
1536 |
||
1537 |
JavaThread *thread = JavaThread::current(); |
|
1538 |
thread->set_blocked_on_compilation(true); |
|
1539 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1540 |
methodHandle method(thread, task->method()); |
1 | 1541 |
{ |
1542 |
MutexLocker waiter(task->lock(), thread); |
|
1543 |
||
1544 |
while (!task->is_complete()) |
|
1545 |
task->lock()->wait(); |
|
1546 |
} |
|
1547 |
// It is harmless to check this status without the lock, because |
|
1548 |
// completion is a stable property (until the task object is recycled). |
|
1549 |
assert(task->is_complete(), "Compilation should have completed"); |
|
1550 |
assert(task->code_handle() == NULL, "must be reset"); |
|
1551 |
||
1552 |
thread->set_blocked_on_compilation(false); |
|
1553 |
||
1554 |
// By convention, the waiter is responsible for recycling a |
|
1555 |
// blocking CompileTask. Since there is only one waiter ever |
|
1556 |
// waiting on a CompileTask, we know that no one else will |
|
1557 |
// be using this CompileTask; we can free it. |
|
1558 |
free_task(task); |
|
1559 |
} |
|
1560 |
||
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1561 |
// Initialize compiler thread(s) + compiler object(s). The postcondition |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1562 |
// of this function is that the compiler runtimes are initialized and that |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1563 |
//compiler threads can start compiling. |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1564 |
bool CompileBroker::init_compiler_runtime() { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1565 |
CompilerThread* thread = CompilerThread::current(); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1566 |
AbstractCompiler* comp = thread->compiler(); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1567 |
// Final sanity check - the compiler object must exist |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1568 |
guarantee(comp != NULL, "Compiler object must exist"); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1569 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1570 |
int system_dictionary_modification_counter; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1571 |
{ |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1572 |
MutexLocker locker(Compile_lock, thread); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1573 |
system_dictionary_modification_counter = SystemDictionary::number_of_modifications(); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1574 |
} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1575 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1576 |
{ |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1577 |
// Must switch to native to allocate ci_env |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1578 |
ThreadToNativeFromVM ttn(thread); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1579 |
ciEnv ci_env(NULL, system_dictionary_modification_counter); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1580 |
// Cache Jvmti state |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1581 |
ci_env.cache_jvmti_state(); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1582 |
// Cache DTrace flags |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1583 |
ci_env.cache_dtrace_flags(); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1584 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1585 |
// Switch back to VM state to do compiler initialization |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1586 |
ThreadInVMfromNative tv(thread); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1587 |
ResetNoHandleMark rnhm; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1588 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1589 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1590 |
if (!comp->is_shark()) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1591 |
// Perform per-thread and global initializations |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1592 |
comp->initialize(); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1593 |
} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1594 |
} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1595 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1596 |
if (comp->is_failed()) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1597 |
disable_compilation_forever(); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1598 |
// If compiler initialization failed, no compiler thread that is specific to a |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1599 |
// particular compiler runtime will ever start to compile methods. |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1600 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1601 |
shutdown_compiler_runtime(comp, thread); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1602 |
return false; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1603 |
} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1604 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1605 |
// C1 specific check |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1606 |
if (comp->is_c1() && (thread->get_buffer_blob() == NULL)) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1607 |
warning("Initialization of %s thread failed (no space to run compilers)", thread->name()); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1608 |
return false; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1609 |
} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1610 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1611 |
return true; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1612 |
} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1613 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1614 |
// If C1 and/or C2 initialization failed, we shut down all compilation. |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1615 |
// We do this to keep things simple. This can be changed if it ever turns out to be |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1616 |
// a problem. |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1617 |
void CompileBroker::shutdown_compiler_runtime(AbstractCompiler* comp, CompilerThread* thread) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1618 |
// Free buffer blob, if allocated |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1619 |
if (thread->get_buffer_blob() != NULL) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1620 |
MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1621 |
CodeCache::free(thread->get_buffer_blob()); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1622 |
} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1623 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1624 |
if (comp->should_perform_shutdown()) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1625 |
// There are two reasons for shutting down the compiler |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1626 |
// 1) compiler runtime initialization failed |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1627 |
// 2) The code cache is full and the following flag is set: -XX:-UseCodeCacheFlushing |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1628 |
warning("Shutting down compiler %s (no space to run compilers)", comp->name()); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1629 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1630 |
// Only one thread per compiler runtime object enters here |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1631 |
// Set state to shut down |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1632 |
comp->set_shut_down(); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1633 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1634 |
MutexLocker mu(MethodCompileQueue_lock, thread); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1635 |
CompileQueue* queue; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1636 |
if (_c1_method_queue != NULL) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1637 |
_c1_method_queue->delete_all(); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1638 |
queue = _c1_method_queue; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1639 |
_c1_method_queue = NULL; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1640 |
delete _c1_method_queue; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1641 |
} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1642 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1643 |
if (_c2_method_queue != NULL) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1644 |
_c2_method_queue->delete_all(); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1645 |
queue = _c2_method_queue; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1646 |
_c2_method_queue = NULL; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1647 |
delete _c2_method_queue; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1648 |
} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1649 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1650 |
// We could delete compiler runtimes also. However, there are references to |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1651 |
// the compiler runtime(s) (e.g., nmethod::is_compiled_by_c1()) which then |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1652 |
// fail. This can be done later if necessary. |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1653 |
} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1654 |
} |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1655 |
|
1 | 1656 |
// ------------------------------------------------------------------ |
1657 |
// CompileBroker::compiler_thread_loop |
|
1658 |
// |
|
1659 |
// The main loop run by a CompilerThread. |
|
1660 |
void CompileBroker::compiler_thread_loop() { |
|
1661 |
CompilerThread* thread = CompilerThread::current(); |
|
1662 |
CompileQueue* queue = thread->queue(); |
|
1663 |
// For the thread that initializes the ciObjectFactory |
|
1664 |
// this resource mark holds all the shared objects |
|
1665 |
ResourceMark rm; |
|
1666 |
||
1667 |
// First thread to get here will initialize the compiler interface |
|
1668 |
||
1669 |
if (!ciObjectFactory::is_initialized()) { |
|
1670 |
ASSERT_IN_VM; |
|
1671 |
MutexLocker only_one (CompileThread_lock, thread); |
|
1672 |
if (!ciObjectFactory::is_initialized()) { |
|
1673 |
ciObjectFactory::initialize(); |
|
1674 |
} |
|
1675 |
} |
|
1676 |
||
1677 |
// Open a log. |
|
1678 |
if (LogCompilation) { |
|
1679 |
init_compiler_thread_log(); |
|
1680 |
} |
|
1681 |
CompileLog* log = thread->log(); |
|
1682 |
if (log != NULL) { |
|
13964 | 1683 |
log->begin_elem("start_compile_thread name='%s' thread='" UINTX_FORMAT "' process='%d'", |
1684 |
thread->name(), |
|
1 | 1685 |
os::current_thread_id(), |
1686 |
os::current_process_id()); |
|
1687 |
log->stamp(); |
|
1688 |
log->end_elem(); |
|
1689 |
} |
|
1690 |
||
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1691 |
// If compiler thread/runtime initialization fails, exit the compiler thread |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1692 |
if (!init_compiler_runtime()) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1693 |
return; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1694 |
} |
4750 | 1695 |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1696 |
// Poll for new compilation tasks as long as the JVM runs. Compilation |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1697 |
// should only be disabled if something went wrong while initializing the |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1698 |
// compiler runtimes. This, in turn, should not happen. The only known case |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1699 |
// when compiler runtime initialization fails is if there is not enough free |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1700 |
// space in the code cache to generate the necessary stubs, etc. |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1701 |
while (!is_compilation_disabled_forever()) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1702 |
// We need this HandleMark to avoid leaking VM handles. |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1703 |
HandleMark hm(thread); |
1 | 1704 |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1705 |
if (CodeCache::unallocated_capacity() < CodeCacheMinimumFreeSpace) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1706 |
// the code cache is really full |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1707 |
handle_full_code_cache(); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1708 |
} |
1 | 1709 |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1710 |
CompileTask* task = queue->get(); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1711 |
if (task == NULL) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1712 |
continue; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1713 |
} |
1 | 1714 |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1715 |
// Give compiler threads an extra quanta. They tend to be bursty and |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1716 |
// this helps the compiler to finish up the job. |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1717 |
if( CompilerThreadHintNoPreempt ) |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1718 |
os::hint_no_preempt(); |
1 | 1719 |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1720 |
// trace per thread time and compile statistics |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1721 |
CompilerCounters* counters = ((CompilerThread*)thread)->counters(); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1722 |
PerfTraceTimedEvent(counters->time_counter(), counters->compile_counter()); |
1 | 1723 |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1724 |
// Assign the task to the current thread. Mark this compilation |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1725 |
// thread as active for the profiler. |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1726 |
CompileTaskWrapper ctw(task); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1727 |
nmethodLocker result_handle; // (handle for the nmethod produced by this task) |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1728 |
task->set_code_handle(&result_handle); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1729 |
methodHandle method(thread, task->method()); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1730 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1731 |
// Never compile a method if breakpoints are present in it |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1732 |
if (method()->number_of_breakpoints() == 0) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1733 |
// Compile the method. |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1734 |
if ((UseCompiler || AlwaysCompileLoopMethods) && CompileBroker::should_compile_new_jobs()) { |
1 | 1735 |
#ifdef COMPILER1 |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1736 |
// Allow repeating compilations for the purpose of benchmarking |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1737 |
// compile speed. This is not useful for customers. |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1738 |
if (CompilationRepeat != 0) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1739 |
int compile_count = CompilationRepeat; |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1740 |
while (compile_count > 0) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1741 |
invoke_compiler_on_method(task); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1742 |
nmethod* nm = method->code(); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1743 |
if (nm != NULL) { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1744 |
nm->make_zombie(); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1745 |
method->clear_code(); |
1 | 1746 |
} |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1747 |
compile_count--; |
1 | 1748 |
} |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1749 |
} |
1 | 1750 |
#endif /* COMPILER1 */ |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1751 |
invoke_compiler_on_method(task); |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1752 |
} else { |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1753 |
// After compilation is disabled, remove remaining methods from queue |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1754 |
method->clear_queued_for_compilation(); |
1 | 1755 |
} |
1756 |
} |
|
1757 |
} |
|
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1758 |
|
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1759 |
// Shut down compiler runtime |
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
1760 |
shutdown_compiler_runtime(thread->compiler(), thread); |
1 | 1761 |
} |
1762 |
||
1763 |
// ------------------------------------------------------------------ |
|
1764 |
// CompileBroker::init_compiler_thread_log |
|
1765 |
// |
|
1766 |
// Set up state required by +LogCompilation. |
|
1767 |
void CompileBroker::init_compiler_thread_log() { |
|
1768 |
CompilerThread* thread = CompilerThread::current(); |
|
17876
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
17383
diff
changeset
|
1769 |
char file_name[4*K]; |
1 | 1770 |
FILE* fp = NULL; |
1771 |
intx thread_id = os::current_thread_id(); |
|
1772 |
for (int try_temp_dir = 1; try_temp_dir >= 0; try_temp_dir--) { |
|
1773 |
const char* dir = (try_temp_dir ? os::get_temp_directory() : NULL); |
|
5237
aab592fd4f44
6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents:
5051
diff
changeset
|
1774 |
if (dir == NULL) { |
17876
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
17383
diff
changeset
|
1775 |
jio_snprintf(file_name, sizeof(file_name), "hs_c" UINTX_FORMAT "_pid%u.log", |
5237
aab592fd4f44
6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents:
5051
diff
changeset
|
1776 |
thread_id, os::current_process_id()); |
aab592fd4f44
6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents:
5051
diff
changeset
|
1777 |
} else { |
17876
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
17383
diff
changeset
|
1778 |
jio_snprintf(file_name, sizeof(file_name), |
5237
aab592fd4f44
6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents:
5051
diff
changeset
|
1779 |
"%s%shs_c" UINTX_FORMAT "_pid%u.log", dir, |
aab592fd4f44
6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents:
5051
diff
changeset
|
1780 |
os::file_separator(), thread_id, os::current_process_id()); |
aab592fd4f44
6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents:
5051
diff
changeset
|
1781 |
} |
17876
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
17383
diff
changeset
|
1782 |
|
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
17383
diff
changeset
|
1783 |
fp = fopen(file_name, "at"); |
1 | 1784 |
if (fp != NULL) { |
17876
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
17383
diff
changeset
|
1785 |
if (LogCompilation && Verbose) { |
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
17383
diff
changeset
|
1786 |
tty->print_cr("Opening compilation log %s", file_name); |
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
17383
diff
changeset
|
1787 |
} |
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
17383
diff
changeset
|
1788 |
CompileLog* log = new(ResourceObj::C_HEAP, mtCompiler) CompileLog(file_name, fp, thread_id); |
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
17383
diff
changeset
|
1789 |
thread->init_log(log); |
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
17383
diff
changeset
|
1790 |
|
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
17383
diff
changeset
|
1791 |
if (xtty != NULL) { |
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
17383
diff
changeset
|
1792 |
ttyLocker ttyl; |
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
17383
diff
changeset
|
1793 |
// Record any per thread log files |
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
17383
diff
changeset
|
1794 |
xtty->elem("thread_logfile thread='%d' filename='%s'", thread_id, file_name); |
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
17383
diff
changeset
|
1795 |
} |
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
17383
diff
changeset
|
1796 |
return; |
1 | 1797 |
} |
1798 |
} |
|
17876
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
17383
diff
changeset
|
1799 |
warning("Cannot open log file: %s", file_name); |
1 | 1800 |
} |
1801 |
||
1802 |
// ------------------------------------------------------------------ |
|
1803 |
// CompileBroker::set_should_block |
|
1804 |
// |
|
1805 |
// Set _should_block. |
|
1806 |
// Call this from the VM, with Threads_lock held and a safepoint requested. |
|
1807 |
void CompileBroker::set_should_block() { |
|
1808 |
assert(Threads_lock->owner() == Thread::current(), "must have threads lock"); |
|
1809 |
assert(SafepointSynchronize::is_at_safepoint(), "must be at a safepoint already"); |
|
1810 |
#ifndef PRODUCT |
|
1811 |
if (PrintCompilation && (Verbose || WizardMode)) |
|
1812 |
tty->print_cr("notifying compiler thread pool to block"); |
|
1813 |
#endif |
|
1814 |
_should_block = true; |
|
1815 |
} |
|
1816 |
||
1817 |
// ------------------------------------------------------------------ |
|
1818 |
// CompileBroker::maybe_block |
|
1819 |
// |
|
1820 |
// Call this from the compiler at convenient points, to poll for _should_block. |
|
1821 |
void CompileBroker::maybe_block() { |
|
1822 |
if (_should_block) { |
|
1823 |
#ifndef PRODUCT |
|
1824 |
if (PrintCompilation && (Verbose || WizardMode)) |
|
1825 |
tty->print_cr("compiler thread " INTPTR_FORMAT " poll detects block request", Thread::current()); |
|
1826 |
#endif |
|
1827 |
ThreadInVMfromNative tivfn(JavaThread::current()); |
|
1828 |
} |
|
1829 |
} |
|
1830 |
||
15201
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14816
diff
changeset
|
1831 |
// wrapper for CodeCache::print_summary() |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14816
diff
changeset
|
1832 |
static void codecache_print(bool detailed) |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14816
diff
changeset
|
1833 |
{ |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14816
diff
changeset
|
1834 |
ResourceMark rm; |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14816
diff
changeset
|
1835 |
stringStream s; |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14816
diff
changeset
|
1836 |
// Dump code cache into a buffer before locking the tty, |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14816
diff
changeset
|
1837 |
{ |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14816
diff
changeset
|
1838 |
MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14816
diff
changeset
|
1839 |
CodeCache::print_summary(&s, detailed); |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14816
diff
changeset
|
1840 |
} |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14816
diff
changeset
|
1841 |
ttyLocker ttyl; |
19708
64e8c91f5f3e
8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents:
18025
diff
changeset
|
1842 |
tty->print(s.as_string()); |
15201
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14816
diff
changeset
|
1843 |
} |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14816
diff
changeset
|
1844 |
|
1 | 1845 |
// ------------------------------------------------------------------ |
1846 |
// CompileBroker::invoke_compiler_on_method |
|
1847 |
// |
|
1848 |
// Compile a method. |
|
1849 |
// |
|
1850 |
void CompileBroker::invoke_compiler_on_method(CompileTask* task) { |
|
1851 |
if (PrintCompilation) { |
|
1852 |
ResourceMark rm; |
|
1853 |
task->print_line(); |
|
1854 |
} |
|
1855 |
elapsedTimer time; |
|
1856 |
||
1857 |
CompilerThread* thread = CompilerThread::current(); |
|
1858 |
ResourceMark rm(thread); |
|
1859 |
||
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
1860 |
if (LogEvents) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
1861 |
_compilation_log->log_compile(thread, task); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
1862 |
} |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
1863 |
|
1 | 1864 |
// Common flags. |
1865 |
uint compile_id = task->compile_id(); |
|
1866 |
int osr_bci = task->osr_bci(); |
|
1867 |
bool is_osr = (osr_bci != standard_entry_bci); |
|
1868 |
bool should_log = (thread->log() != NULL); |
|
1869 |
bool should_break = false; |
|
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
1870 |
int task_level = task->comp_level(); |
1 | 1871 |
{ |
1872 |
// create the handle inside it's own block so it can't |
|
1873 |
// accidentally be referenced once the thread transitions to |
|
1874 |
// native. The NoHandleMark before the transition should catch |
|
1875 |
// any cases where this occurs in the future. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1876 |
methodHandle method(thread, task->method()); |
1 | 1877 |
should_break = check_break_at(method, compile_id, is_osr); |
1878 |
if (should_log && !CompilerOracle::should_log(method)) { |
|
1879 |
should_log = false; |
|
1880 |
} |
|
1881 |
assert(!method->is_native(), "no longer compile natives"); |
|
1882 |
||
1883 |
// Save information about this method in case of failure. |
|
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
1884 |
set_last_compile(thread, method, is_osr, task_level); |
1 | 1885 |
|
17133
ef4dd2f8fcb1
8013532: Remove unused parameter "compiler" from DTRACE_METHOD_COMPILE* macros
roland
parents:
17132
diff
changeset
|
1886 |
DTRACE_METHOD_COMPILE_BEGIN_PROBE(method, compiler_name(task_level)); |
1 | 1887 |
} |
1888 |
||
1889 |
// Allocate a new set of JNI handles. |
|
1890 |
push_jni_handle_block(); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1891 |
Method* target_handle = task->method(); |
1 | 1892 |
int compilable = ciEnv::MethodCompilable; |
1893 |
{ |
|
1894 |
int system_dictionary_modification_counter; |
|
1895 |
{ |
|
1896 |
MutexLocker locker(Compile_lock, thread); |
|
1897 |
system_dictionary_modification_counter = SystemDictionary::number_of_modifications(); |
|
1898 |
} |
|
1899 |
||
1900 |
NoHandleMark nhm; |
|
1901 |
ThreadToNativeFromVM ttn(thread); |
|
1902 |
||
1903 |
ciEnv ci_env(task, system_dictionary_modification_counter); |
|
1904 |
if (should_break) { |
|
1905 |
ci_env.set_break_at_compile(true); |
|
1906 |
} |
|
1907 |
if (should_log) { |
|
1908 |
ci_env.set_log(thread->log()); |
|
1909 |
} |
|
1910 |
assert(thread->env() == &ci_env, "set by ci_env"); |
|
1911 |
// The thread-env() field is cleared in ~CompileTaskWrapper. |
|
1912 |
||
2867
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1
diff
changeset
|
1913 |
// Cache Jvmti state |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1
diff
changeset
|
1914 |
ci_env.cache_jvmti_state(); |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1
diff
changeset
|
1915 |
|
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1
diff
changeset
|
1916 |
// Cache DTrace flags |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1
diff
changeset
|
1917 |
ci_env.cache_dtrace_flags(); |
69187054225f
6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents:
1
diff
changeset
|
1918 |
|
1 | 1919 |
ciMethod* target = ci_env.get_method_from_handle(target_handle); |
1920 |
||
1921 |
TraceTime t1("compilation", &time); |
|
18025 | 1922 |
EventCompilation event; |
1 | 1923 |
|
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
1924 |
AbstractCompiler *comp = compiler(task_level); |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
1925 |
if (comp == NULL) { |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
1926 |
ci_env.record_method_not_compilable("no compiler", !TieredCompilation); |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
1927 |
} else { |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
1928 |
comp->compile_method(&ci_env, target, osr_bci); |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
1929 |
} |
1 | 1930 |
|
1931 |
if (!ci_env.failing() && task->code() == NULL) { |
|
1932 |
//assert(false, "compiler should always document failure"); |
|
1933 |
// The compiler elected, without comment, not to register a result. |
|
1934 |
// Do not attempt further compilations of this method. |
|
7389
93110864f81e
7000349: Tiered reacts incorrectly to C1 compilation failures
iveresov
parents:
6453
diff
changeset
|
1935 |
ci_env.record_method_not_compilable("compile failed", !TieredCompilation); |
1 | 1936 |
} |
1937 |
||
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
1938 |
// Copy this bit to the enclosing block: |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
1939 |
compilable = ci_env.compilable(); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
1940 |
|
1 | 1941 |
if (ci_env.failing()) { |
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
1942 |
const char* retry_message = ci_env.retry_message(); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
1943 |
if (_compilation_log != NULL) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
1944 |
_compilation_log->log_failure(thread, task, ci_env.failure_reason(), retry_message); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
1945 |
} |
1 | 1946 |
if (PrintCompilation) { |
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
1947 |
FormatBufferResource msg = retry_message != NULL ? |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
1948 |
err_msg_res("COMPILE SKIPPED: %s (%s)", ci_env.failure_reason(), retry_message) : |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
1949 |
err_msg_res("COMPILE SKIPPED: %s", ci_env.failure_reason()); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
1950 |
task->print_compilation(tty, msg); |
1 | 1951 |
} |
1952 |
} else { |
|
1953 |
task->mark_success(); |
|
1954 |
task->set_num_inlined_bytecodes(ci_env.num_inlined_bytecodes()); |
|
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
1955 |
if (_compilation_log != NULL) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
1956 |
nmethod* code = task->code(); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
1957 |
if (code != NULL) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
1958 |
_compilation_log->log_nmethod(thread, code); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
1959 |
} |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11572
diff
changeset
|
1960 |
} |
1 | 1961 |
} |
17123
a8e62eed2e3e
8011675: adding compilation level to replay data
iignatyev
parents:
17016
diff
changeset
|
1962 |
// simulate crash during compilation |
a8e62eed2e3e
8011675: adding compilation level to replay data
iignatyev
parents:
17016
diff
changeset
|
1963 |
assert(task->compile_id() != CICrashAt, "just as planned"); |
18025 | 1964 |
if (event.should_commit()) { |
1965 |
event.set_method(target->get_Method()); |
|
1966 |
event.set_compileID(compile_id); |
|
1967 |
event.set_compileLevel(task->comp_level()); |
|
1968 |
event.set_succeded(task->is_success()); |
|
1969 |
event.set_isOsr(is_osr); |
|
1970 |
event.set_codeSize((task->code() == NULL) ? 0 : task->code()->total_size()); |
|
1971 |
event.set_inlinedBytes(task->num_inlined_bytecodes()); |
|
1972 |
event.commit(); |
|
1973 |
} |
|
1 | 1974 |
} |
1975 |
pop_jni_handle_block(); |
|
1976 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
1977 |
methodHandle method(thread, task->method()); |
1 | 1978 |
|
17133
ef4dd2f8fcb1
8013532: Remove unused parameter "compiler" from DTRACE_METHOD_COMPILE* macros
roland
parents:
17132
diff
changeset
|
1979 |
DTRACE_METHOD_COMPILE_END_PROBE(method, compiler_name(task_level), task->is_success()); |
1 | 1980 |
|
1981 |
collect_statistics(thread, time, task); |
|
1982 |
||
10988
a3b2bd43ef4f
7107042: assert(no_dead_loop) failed: dead loop detected
kvn
parents:
10971
diff
changeset
|
1983 |
if (PrintCompilation && PrintCompilation2) { |
10971 | 1984 |
tty->print("%7d ", (int) tty->time_stamp().milliseconds()); // print timestamp |
1985 |
tty->print("%4d ", compile_id); // print compilation number |
|
1986 |
tty->print("%s ", (is_osr ? "%" : " ")); |
|
17383 | 1987 |
if (task->code() != NULL) { |
1988 |
tty->print("size: %d(%d) ", task->code()->total_size(), task->code()->insts_size()); |
|
1989 |
} |
|
1990 |
tty->print_cr("time: %d inlined: %d bytes", (int)time.milliseconds(), task->num_inlined_bytecodes()); |
|
10971 | 1991 |
} |
1992 |
||
15201
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14816
diff
changeset
|
1993 |
if (PrintCodeCacheOnCompilation) |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14816
diff
changeset
|
1994 |
codecache_print(/* detailed= */ false); |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14816
diff
changeset
|
1995 |
|
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
1996 |
// Disable compilation, if required. |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
1997 |
switch (compilable) { |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
1998 |
case ciEnv::MethodCompilable_never: |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
1999 |
if (is_osr) |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
2000 |
method->set_not_osr_compilable_quietly(); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
2001 |
else |
4756
da88c27a9241
6923043: failed nightly tests which use -XX:+PrintCompilation -Xcomp -XX:CompileOnly
kvn
parents:
4750
diff
changeset
|
2002 |
method->set_not_compilable_quietly(); |
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
2003 |
break; |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
2004 |
case ciEnv::MethodCompilable_not_at_tier: |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
2005 |
if (is_osr) |
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
2006 |
method->set_not_osr_compilable_quietly(task_level); |
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
2007 |
else |
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
2008 |
method->set_not_compilable_quietly(task_level); |
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13738
diff
changeset
|
2009 |
break; |
1 | 2010 |
} |
2011 |
||
2012 |
// Note that the queued_for_compilation bits are cleared without |
|
2013 |
// protection of a mutex. [They were set by the requester thread, |
|
2014 |
// when adding the task to the complie queue -- at which time the |
|
2015 |
// compile queue lock was held. Subsequently, we acquired the compile |
|
2016 |
// queue lock to get this task off the compile queue; thus (to belabour |
|
2017 |
// the point somewhat) our clearing of the bits must be occurring |
|
2018 |
// only after the setting of the bits. See also 14012000 above. |
|
2019 |
method->clear_queued_for_compilation(); |
|
2020 |
||
2021 |
#ifdef ASSERT |
|
2022 |
if (CollectedHeap::fired_fake_oom()) { |
|
2023 |
// The current compile received a fake OOM during compilation so |
|
2024 |
// go ahead and exit the VM since the test apparently succeeded |
|
2025 |
tty->print_cr("*** Shutting down VM after successful fake OOM"); |
|
2026 |
vm_exit(0); |
|
2027 |
} |
|
2028 |
#endif |
|
2029 |
} |
|
2030 |
||
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
21204
diff
changeset
|
2031 |
/** |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
21204
diff
changeset
|
2032 |
* The CodeCache is full. Print out warning and disable compilation |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
21204
diff
changeset
|
2033 |
* or try code cache cleaning so compilation can continue later. |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
21204
diff
changeset
|
2034 |
*/ |
4750 | 2035 |
void CompileBroker::handle_full_code_cache() { |
2036 |
UseInterpreter = true; |
|
2037 |
if (UseCompiler || AlwaysCompileLoopMethods ) { |
|
6270
d628c75fbf48
6976372: # assert(_owner == Thread::current()) failed: invariant
never
parents:
6187
diff
changeset
|
2038 |
if (xtty != NULL) { |
15201
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14816
diff
changeset
|
2039 |
ResourceMark rm; |
9138
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
9103
diff
changeset
|
2040 |
stringStream s; |
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
9103
diff
changeset
|
2041 |
// Dump code cache state into a buffer before locking the tty, |
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
9103
diff
changeset
|
2042 |
// because log_state() will use locks causing lock conflicts. |
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
9103
diff
changeset
|
2043 |
CodeCache::log_state(&s); |
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
9103
diff
changeset
|
2044 |
// Lock to prevent tearing |
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
9103
diff
changeset
|
2045 |
ttyLocker ttyl; |
6270
d628c75fbf48
6976372: # assert(_owner == Thread::current()) failed: invariant
never
parents:
6187
diff
changeset
|
2046 |
xtty->begin_elem("code_cache_full"); |
9138
35e4b04eadf4
7036236: VM crashes assert((!inside_attrs()) || is_error_reported()) failed ...
iveresov
parents:
9103
diff
changeset
|
2047 |
xtty->print(s.as_string()); |
6270
d628c75fbf48
6976372: # assert(_owner == Thread::current()) failed: invariant
never
parents:
6187
diff
changeset
|
2048 |
xtty->stamp(); |
d628c75fbf48
6976372: # assert(_owner == Thread::current()) failed: invariant
never
parents:
6187
diff
changeset
|
2049 |
xtty->end_elem(); |
4750 | 2050 |
} |
18025 | 2051 |
|
2052 |
CodeCache::report_codemem_full(); |
|
2053 |
||
5701
bb5bb5d5e19f
6930994: Code cache is full warning should be visible in product
never
parents:
5533
diff
changeset
|
2054 |
#ifndef PRODUCT |
4750 | 2055 |
if (CompileTheWorld || ExitOnFullCodeCache) { |
15201
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
14816
diff
changeset
|
2056 |
codecache_print(/* detailed= */ true); |
4750 | 2057 |
before_exit(JavaThread::current()); |
2058 |
exit_globals(); // will delete tty |
|
2059 |
vm_direct_exit(CompileTheWorld ? 0 : 1); |
|
2060 |
} |
|
5701
bb5bb5d5e19f
6930994: Code cache is full warning should be visible in product
never
parents:
5533
diff
changeset
|
2061 |
#endif |
4750 | 2062 |
if (UseCodeCacheFlushing) { |
20290
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
2063 |
// Since code cache is full, immediately stop new compiles |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
2064 |
if (CompileBroker::set_should_compile_new_jobs(CompileBroker::stop_compilation)) { |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
2065 |
NMethodSweeper::log_sweep("disable_compiler"); |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
19708
diff
changeset
|
2066 |
} |
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
21204
diff
changeset
|
2067 |
// Switch to 'vm_state'. This ensures that possibly_sweep() can be called |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
21204
diff
changeset
|
2068 |
// without having to consider the state in which the current thread is. |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
21204
diff
changeset
|
2069 |
ThreadInVMfromUnknown in_vm; |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
21204
diff
changeset
|
2070 |
NMethodSweeper::possibly_sweep(); |
4750 | 2071 |
} else { |
20707
b3b658c6d1f8
8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents:
20688
diff
changeset
|
2072 |
disable_compilation_forever(); |
4750 | 2073 |
} |
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
21204
diff
changeset
|
2074 |
|
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
21204
diff
changeset
|
2075 |
// Print warning only once |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
21204
diff
changeset
|
2076 |
if (should_print_compiler_warning()) { |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
21204
diff
changeset
|
2077 |
warning("CodeCache is full. Compiler has been disabled."); |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
21204
diff
changeset
|
2078 |
warning("Try increasing the code cache size using -XX:ReservedCodeCacheSize="); |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
21204
diff
changeset
|
2079 |
codecache_print(/* detailed= */ true); |
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
21204
diff
changeset
|
2080 |
} |
4750 | 2081 |
} |
2082 |
} |
|
2083 |
||
2084 |
// ------------------------------------------------------------------ |
|
1 | 2085 |
// CompileBroker::set_last_compile |
2086 |
// |
|
2087 |
// Record this compilation for debugging purposes. |
|
2088 |
void CompileBroker::set_last_compile(CompilerThread* thread, methodHandle method, bool is_osr, int comp_level) { |
|
2089 |
ResourceMark rm; |
|
2090 |
char* method_name = method->name()->as_C_string(); |
|
2091 |
strncpy(_last_method_compiled, method_name, CompileBroker::name_buffer_length); |
|
2092 |
char current_method[CompilerCounters::cmname_buffer_length]; |
|
2093 |
size_t maxLen = CompilerCounters::cmname_buffer_length; |
|
2094 |
||
2095 |
if (UsePerfData) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2096 |
const char* class_name = method->method_holder()->name()->as_C_string(); |
1 | 2097 |
|
2098 |
size_t s1len = strlen(class_name); |
|
2099 |
size_t s2len = strlen(method_name); |
|
2100 |
||
2101 |
// check if we need to truncate the string |
|
2102 |
if (s1len + s2len + 2 > maxLen) { |
|
2103 |
||
2104 |
// the strategy is to lop off the leading characters of the |
|
2105 |
// class name and the trailing characters of the method name. |
|
2106 |
||
2107 |
if (s2len + 2 > maxLen) { |
|
2108 |
// lop of the entire class name string, let snprintf handle |
|
2109 |
// truncation of the method name. |
|
2110 |
class_name += s1len; // null string |
|
2111 |
} |
|
2112 |
else { |
|
2113 |
// lop off the extra characters from the front of the class name |
|
2114 |
class_name += ((s1len + s2len + 2) - maxLen); |
|
2115 |
} |
|
2116 |
} |
|
2117 |
||
2118 |
jio_snprintf(current_method, maxLen, "%s %s", class_name, method_name); |
|
2119 |
} |
|
2120 |
||
2121 |
if (CICountOSR && is_osr) { |
|
2122 |
_last_compile_type = osr_compile; |
|
2123 |
} else { |
|
2124 |
_last_compile_type = normal_compile; |
|
2125 |
} |
|
2126 |
_last_compile_level = comp_level; |
|
2127 |
||
2128 |
if (UsePerfData) { |
|
2129 |
CompilerCounters* counters = thread->counters(); |
|
2130 |
counters->set_current_method(current_method); |
|
2131 |
counters->set_compile_type((jlong)_last_compile_type); |
|
2132 |
} |
|
2133 |
} |
|
2134 |
||
2135 |
||
2136 |
// ------------------------------------------------------------------ |
|
2137 |
// CompileBroker::push_jni_handle_block |
|
2138 |
// |
|
2139 |
// Push on a new block of JNI handles. |
|
2140 |
void CompileBroker::push_jni_handle_block() { |
|
2141 |
JavaThread* thread = JavaThread::current(); |
|
2142 |
||
2143 |
// Allocate a new block for JNI handles. |
|
2144 |
// Inlined code from jni_PushLocalFrame() |
|
2145 |
JNIHandleBlock* java_handles = thread->active_handles(); |
|
2146 |
JNIHandleBlock* compile_handles = JNIHandleBlock::allocate_block(thread); |
|
2147 |
assert(compile_handles != NULL && java_handles != NULL, "should not be NULL"); |
|
2148 |
compile_handles->set_pop_frame_link(java_handles); // make sure java handles get gc'd. |
|
2149 |
thread->set_active_handles(compile_handles); |
|
2150 |
} |
|
2151 |
||
2152 |
||
2153 |
// ------------------------------------------------------------------ |
|
2154 |
// CompileBroker::pop_jni_handle_block |
|
2155 |
// |
|
2156 |
// Pop off the current block of JNI handles. |
|
2157 |
void CompileBroker::pop_jni_handle_block() { |
|
2158 |
JavaThread* thread = JavaThread::current(); |
|
2159 |
||
2160 |
// Release our JNI handle block |
|
2161 |
JNIHandleBlock* compile_handles = thread->active_handles(); |
|
2162 |
JNIHandleBlock* java_handles = compile_handles->pop_frame_link(); |
|
2163 |
thread->set_active_handles(java_handles); |
|
2164 |
compile_handles->set_pop_frame_link(NULL); |
|
2165 |
JNIHandleBlock::release_block(compile_handles, thread); // may block |
|
2166 |
} |
|
2167 |
||
2168 |
||
2169 |
// ------------------------------------------------------------------ |
|
2170 |
// CompileBroker::check_break_at |
|
2171 |
// |
|
2172 |
// Should the compilation break at the current compilation. |
|
2173 |
bool CompileBroker::check_break_at(methodHandle method, int compile_id, bool is_osr) { |
|
2174 |
if (CICountOSR && is_osr && (compile_id == CIBreakAtOSR)) { |
|
2175 |
return true; |
|
2176 |
} else if( CompilerOracle::should_break_at(method) ) { // break when compiling |
|
2177 |
return true; |
|
2178 |
} else { |
|
2179 |
return (compile_id == CIBreakAt); |
|
2180 |
} |
|
2181 |
} |
|
2182 |
||
2183 |
// ------------------------------------------------------------------ |
|
2184 |
// CompileBroker::collect_statistics |
|
2185 |
// |
|
2186 |
// Collect statistics about the compilation. |
|
2187 |
||
2188 |
void CompileBroker::collect_statistics(CompilerThread* thread, elapsedTimer time, CompileTask* task) { |
|
2189 |
bool success = task->is_success(); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
2190 |
methodHandle method (thread, task->method()); |
1 | 2191 |
uint compile_id = task->compile_id(); |
2192 |
bool is_osr = (task->osr_bci() != standard_entry_bci); |
|
2193 |
nmethod* code = task->code(); |
|
2194 |
CompilerCounters* counters = thread->counters(); |
|
2195 |
||
2196 |
assert(code == NULL || code->is_locked_by_vm(), "will survive the MutexLocker"); |
|
2197 |
MutexLocker locker(CompileStatistics_lock); |
|
2198 |
||
2199 |
// _perf variables are production performance counters which are |
|
2200 |
// updated regardless of the setting of the CITime and CITimeEach flags |
|
2201 |
// |
|
2202 |
if (!success) { |
|
2203 |
_total_bailout_count++; |
|
2204 |
if (UsePerfData) { |
|
2205 |
_perf_last_failed_method->set_value(counters->current_method()); |
|
2206 |
_perf_last_failed_type->set_value(counters->compile_type()); |
|
2207 |
_perf_total_bailout_count->inc(); |
|
2208 |
} |
|
2209 |
} else if (code == NULL) { |
|
2210 |
if (UsePerfData) { |
|
2211 |
_perf_last_invalidated_method->set_value(counters->current_method()); |
|
2212 |
_perf_last_invalidated_type->set_value(counters->compile_type()); |
|
2213 |
_perf_total_invalidated_count->inc(); |
|
2214 |
} |
|
2215 |
_total_invalidated_count++; |
|
2216 |
} else { |
|
2217 |
// Compilation succeeded |
|
2218 |
||
2219 |
// update compilation ticks - used by the implementation of |
|
2220 |
// java.lang.management.CompilationMBean |
|
2221 |
_perf_total_compilation->inc(time.ticks()); |
|
2222 |
||
18025 | 2223 |
_t_total_compilation.add(time); |
2224 |
_peak_compilation_time = time.milliseconds() > _peak_compilation_time ? time.milliseconds() : _peak_compilation_time; |
|
2225 |
||
1 | 2226 |
if (CITime) { |
2227 |
if (is_osr) { |
|
2228 |
_t_osr_compilation.add(time); |
|
2229 |
_sum_osr_bytes_compiled += method->code_size() + task->num_inlined_bytecodes(); |
|
2230 |
} else { |
|
2231 |
_t_standard_compilation.add(time); |
|
2232 |
_sum_standard_bytes_compiled += method->code_size() + task->num_inlined_bytecodes(); |
|
2233 |
} |
|
2234 |
} |
|
2235 |
||
2236 |
if (UsePerfData) { |
|
2237 |
// save the name of the last method compiled |
|
2238 |
_perf_last_method->set_value(counters->current_method()); |
|
2239 |
_perf_last_compile_type->set_value(counters->compile_type()); |
|
2240 |
_perf_last_compile_size->set_value(method->code_size() + |
|
2241 |
task->num_inlined_bytecodes()); |
|
2242 |
if (is_osr) { |
|
2243 |
_perf_osr_compilation->inc(time.ticks()); |
|
2244 |
_perf_sum_osr_bytes_compiled->inc(method->code_size() + task->num_inlined_bytecodes()); |
|
2245 |
} else { |
|
2246 |
_perf_standard_compilation->inc(time.ticks()); |
|
2247 |
_perf_sum_standard_bytes_compiled->inc(method->code_size() + task->num_inlined_bytecodes()); |
|
2248 |
} |
|
2249 |
} |
|
2250 |
||
2251 |
if (CITimeEach) { |
|
2252 |
float bytes_per_sec = 1.0 * (method->code_size() + task->num_inlined_bytecodes()) / time.seconds(); |
|
2253 |
tty->print_cr("%3d seconds: %f bytes/sec : %f (bytes %d + %d inlined)", |
|
2254 |
compile_id, time.seconds(), bytes_per_sec, method->code_size(), task->num_inlined_bytecodes()); |
|
2255 |
} |
|
2256 |
||
2257 |
// Collect counts of successful compilations |
|
6418 | 2258 |
_sum_nmethod_size += code->total_size(); |
2259 |
_sum_nmethod_code_size += code->insts_size(); |
|
1 | 2260 |
_total_compile_count++; |
2261 |
||
2262 |
if (UsePerfData) { |
|
6418 | 2263 |
_perf_sum_nmethod_size->inc( code->total_size()); |
2264 |
_perf_sum_nmethod_code_size->inc(code->insts_size()); |
|
1 | 2265 |
_perf_total_compile_count->inc(); |
2266 |
} |
|
2267 |
||
2268 |
if (is_osr) { |
|
2269 |
if (UsePerfData) _perf_total_osr_compile_count->inc(); |
|
2270 |
_total_osr_compile_count++; |
|
2271 |
} else { |
|
2272 |
if (UsePerfData) _perf_total_standard_compile_count->inc(); |
|
2273 |
_total_standard_compile_count++; |
|
2274 |
} |
|
2275 |
} |
|
2276 |
// set the current method for the thread to null |
|
2277 |
if (UsePerfData) counters->set_current_method(""); |
|
2278 |
} |
|
2279 |
||
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
2280 |
const char* CompileBroker::compiler_name(int comp_level) { |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
2281 |
AbstractCompiler *comp = CompileBroker::compiler(comp_level); |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
2282 |
if (comp == NULL) { |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
2283 |
return "no compiler"; |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
2284 |
} else { |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
2285 |
return (comp->name()); |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
2286 |
} |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
2287 |
} |
1 | 2288 |
|
2289 |
void CompileBroker::print_times() { |
|
2290 |
tty->cr(); |
|
2291 |
tty->print_cr("Accumulated compiler times (for compiled methods only)"); |
|
2292 |
tty->print_cr("------------------------------------------------"); |
|
2293 |
//0000000000111111111122222222223333333333444444444455555555556666666666 |
|
2294 |
//0123456789012345678901234567890123456789012345678901234567890123456789 |
|
2295 |
tty->print_cr(" Total compilation time : %6.3f s", CompileBroker::_t_total_compilation.seconds()); |
|
2296 |
tty->print_cr(" Standard compilation : %6.3f s, Average : %2.3f", |
|
2297 |
CompileBroker::_t_standard_compilation.seconds(), |
|
2298 |
CompileBroker::_t_standard_compilation.seconds() / CompileBroker::_total_standard_compile_count); |
|
2299 |
tty->print_cr(" On stack replacement : %6.3f s, Average : %2.3f", CompileBroker::_t_osr_compilation.seconds(), CompileBroker::_t_osr_compilation.seconds() / CompileBroker::_total_osr_compile_count); |
|
4560 | 2300 |
|
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
2301 |
AbstractCompiler *comp = compiler(CompLevel_simple); |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
2302 |
if (comp != NULL) { |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
2303 |
comp->print_timers(); |
1 | 2304 |
} |
16372
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
2305 |
comp = compiler(CompLevel_full_optimization); |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
2306 |
if (comp != NULL) { |
20c2c4dc8b77
8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents:
15946
diff
changeset
|
2307 |
comp->print_timers(); |
6453 | 2308 |
} |
1 | 2309 |
tty->cr(); |
16611 | 2310 |
tty->print_cr(" Total compiled methods : %6d methods", CompileBroker::_total_compile_count); |
2311 |
tty->print_cr(" Standard compilation : %6d methods", CompileBroker::_total_standard_compile_count); |
|
2312 |
tty->print_cr(" On stack replacement : %6d methods", CompileBroker::_total_osr_compile_count); |
|
1 | 2313 |
int tcb = CompileBroker::_sum_osr_bytes_compiled + CompileBroker::_sum_standard_bytes_compiled; |
2314 |
tty->print_cr(" Total compiled bytecodes : %6d bytes", tcb); |
|
2315 |
tty->print_cr(" Standard compilation : %6d bytes", CompileBroker::_sum_standard_bytes_compiled); |
|
2316 |
tty->print_cr(" On stack replacement : %6d bytes", CompileBroker::_sum_osr_bytes_compiled); |
|
2317 |
int bps = (int)(tcb / CompileBroker::_t_total_compilation.seconds()); |
|
2318 |
tty->print_cr(" Average compilation speed: %6d bytes/s", bps); |
|
2319 |
tty->cr(); |
|
2320 |
tty->print_cr(" nmethod code size : %6d bytes", CompileBroker::_sum_nmethod_code_size); |
|
2321 |
tty->print_cr(" nmethod total size : %6d bytes", CompileBroker::_sum_nmethod_size); |
|
2322 |
} |
|
2323 |
||
2324 |
// Debugging output for failure |
|
2325 |
void CompileBroker::print_last_compile() { |
|
2326 |
if ( _last_compile_level != CompLevel_none && |
|
2327 |
compiler(_last_compile_level) != NULL && |
|
2328 |
_last_method_compiled != NULL && |
|
2329 |
_last_compile_type != no_compile) { |
|
2330 |
if (_last_compile_type == osr_compile) { |
|
2331 |
tty->print_cr("Last parse: [osr]%d+++(%d) %s", |
|
2332 |
_osr_compilation_id, _last_compile_level, _last_method_compiled); |
|
2333 |
} else { |
|
2334 |
tty->print_cr("Last parse: %d+++(%d) %s", |
|
2335 |
_compilation_id, _last_compile_level, _last_method_compiled); |
|
2336 |
} |
|
2337 |
} |
|
2338 |
} |
|
2339 |
||
2340 |
||
2341 |
void CompileBroker::print_compiler_threads_on(outputStream* st) { |
|
2342 |
#ifndef PRODUCT |
|
2343 |
st->print_cr("Compiler thread printing unimplemented."); |
|
2344 |
st->cr(); |
|
2345 |
#endif |
|
2346 |
} |