src/share/vm/compiler/compileBroker.cpp

Thu, 14 Jun 2018 09:15:08 -0700

author
kevinw
date
Thu, 14 Jun 2018 09:15:08 -0700
changeset 9327
f96fcd9e1e1b
parent 8617
865c2c3bbf3d
child 9448
73d689add964
child 9690
61d955db2a5b
permissions
-rw-r--r--

8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
Summary: Need to add a space between macro identifier and string literal
Reviewed-by: bpittore, stefank, dholmes, kbarrett

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

mercurial