diff src/share/vm/compiler/compileBroker.cpp @ 15487:07fac8558d7b

update state flag after initialization to allow other compiler threads to execute
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Fri, 02 May 2014 17:03:10 -0700
parents a20be10ad437
children e20a45d17181
line wrap: on
line diff
--- a/src/share/vm/compiler/compileBroker.cpp	Fri May 02 16:12:07 2014 -0700
+++ b/src/share/vm/compiler/compileBroker.cpp	Fri May 02 17:03:10 2014 -0700
@@ -516,7 +516,8 @@
   if (_osr_bci != CompileBroker::standard_entry_bci) {
     log->print(" osr_bci='%d'", _osr_bci);
   }
-  if (_comp_level != CompLevel_highest_tier) {
+  // Always print the level in tiered.
+  if (_comp_level != CompLevel_highest_tier || TieredCompilation) {
     log->print(" level='%d'", _comp_level);
   }
   if (_is_blocking) {