comparison src/share/vm/prims/jni.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 d9f5c93a83d3
comparison
equal deleted inserted replaced
22448:bd786aba15a7 22449:cfd7ebda543b
5215 CompileTheWorld = false; 5215 CompileTheWorld = false;
5216 #endif 5216 #endif
5217 5217
5218 #ifdef COMPILERJVMCI 5218 #ifdef COMPILERJVMCI
5219 // JVMCI is initialized on a CompilerThread 5219 // JVMCI is initialized on a CompilerThread
5220 if (FLAG_IS_DEFAULT(BootstrapJVMCI) ? !TieredCompilation : BootstrapJVMCI) { 5220 if (BootstrapJVMCI) {
5221 JVMCICompiler::instance()->bootstrap(); 5221 JVMCICompiler::instance()->bootstrap();
5222 } 5222 }
5223 #elif INCLUDE_JVMCI 5223 #elif INCLUDE_JVMCI
5224 if (doCTW) { 5224 if (doCTW) {
5225 // required for hosted CTW. 5225 // required for hosted CTW.