comparison src/share/vm/prims/jni.cpp @ 16143:4f185700f4b7

made BootstrapGraal have same semantics under -XX:-UseGraalCompilationQueue as -XX:+UseGraalCompilationQueue (i.e. only enabled if explicitly specified or -XX:-TieredCompilation)
author Doug Simon <doug.simon@oracle.com>
date Thu, 19 Jun 2014 00:45:04 +0200
parents d32be0297274
children 4481cf549cfc
comparison
equal deleted inserted replaced
16142:a87f6927d73e 16143:4f185700f4b7
5186 } else { 5186 } else {
5187 assert(!UseCompiler, "why isn't there any compiler?"); 5187 assert(!UseCompiler, "why isn't there any compiler?");
5188 } 5188 }
5189 } else { 5189 } else {
5190 // Graal is initialized on a CompilerThread 5190 // Graal is initialized on a CompilerThread
5191 if (BootstrapGraal) { 5191 if (FLAG_IS_DEFAULT(BootstrapGraal) ? !TieredCompilation : BootstrapGraal) {
5192 GraalCompiler::instance()->bootstrap(); 5192 GraalCompiler::instance()->bootstrap();
5193 } 5193 }
5194 } 5194 }
5195 #endif 5195 #endif
5196 5196