src/share/vm/compiler/compileTask.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/compiler/compileTask.cpp	Thu Nov  3 14:16:26 2016
--- new/src/share/vm/compiler/compileTask.cpp	Thu Nov  3 14:16:26 2016

*** 290,301 **** --- 290,300 ---- } // else compile_kind='c2c' if (!method.is_null()) log->method(method); if (_osr_bci != CompileBroker::standard_entry_bci) { log->print(" osr_bci='%d'", _osr_bci); } // Always print the level in tiered. if (_comp_level != CompLevel_highest_tier || TieredCompilation) { + if (_comp_level != CompLevel_highest_tier) { log->print(" level='%d'", _comp_level); } if (_is_blocking) { log->print(" blocking='1'"); }
*** 327,354 **** --- 326,335 ---- xtty->end_elem(); } // ------------------------------------------------------------------ // CompileTask::log_task_dequeued void CompileTask::log_task_dequeued(const char* comment) { if (LogCompilation && xtty != NULL) { Thread* thread = Thread::current(); ttyLocker ttyl; ResourceMark rm(thread); xtty->begin_elem("task_dequeued"); log_task(xtty); if (comment != NULL) { xtty->print(" comment='%s'", comment); } xtty->end_elem(); } } // ------------------------------------------------------------------ // CompileTask::log_task_start void CompileTask::log_task_start(CompileLog* log) { log->begin_head("task"); log_task(log); log->end_head();

src/share/vm/compiler/compileTask.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File