comparison src/share/vm/compiler/compileBroker.cpp @ 22449:cfd7ebda543b

run JVMCI bootstrap iff BootstrapJVMCI is true
author Doug Simon <doug.simon@oracle.com>
date Fri, 21 Aug 2015 11:33:48 +0200
parents c28cb37b2e1d
children 9b3b66634d17
comparison
equal deleted inserted replaced
22448:bd786aba15a7 22449:cfd7ebda543b
921 #endif 921 #endif
922 922
923 #if defined(COMPILERJVMCI) 923 #if defined(COMPILERJVMCI)
924 _compilers[1] = jvmci; 924 _compilers[1] = jvmci;
925 if (FLAG_IS_DEFAULT(JVMCIThreads)) { 925 if (FLAG_IS_DEFAULT(JVMCIThreads)) {
926 if (!TieredCompilation && FLAG_IS_DEFAULT(BootstrapJVMCI) || BootstrapJVMCI) { 926 if (BootstrapJVMCI) {
927 // JVMCI will bootstrap so give it more threads 927 // JVMCI will bootstrap so give it more threads
928 c2_count = MIN2(32, os::active_processor_count()); 928 c2_count = MIN2(32, os::active_processor_count());
929 } 929 }
930 } else { 930 } else {
931 c2_count = JVMCIThreads; 931 c2_count = JVMCIThreads;