src/share/vm/compiler/compileBroker.cpp

Mon, 20 Oct 2014 13:22:28 +0200

author
neliasso
date
Mon, 20 Oct 2014 13:22:28 +0200
changeset 7289
b9c94af14fd0
parent 7203
966205f0e717
child 7302
41dcdd636080
permissions
-rw-r--r--

8059445: Remove CompilationRepeat
Summary: Remove product flag -XX:CompilationRepeat
Reviewed-by: kvn, iveresov

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

mercurial