src/share/vm/compiler/compileBroker.cpp

Fri, 25 Oct 2013 22:57:13 +0200

author
anoll
date
Fri, 25 Oct 2013 22:57:13 +0200
changeset 6045
a196f1aaec86
parent 5990
8b4bbba322d3
child 6099
78da3894b86f
child 6472
2b8e28fdf503
permissions
-rw-r--r--

8026949: -Xint flag prints wrong warning: Initialization of C1 thread failed (no space to run compilers)
Summary: Exit compiler threads early during startup so that wrong error message is not printed
Reviewed-by: iveresov, twisti

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

mercurial