comparison src/share/vm/prims/jni.cpp @ 3540:85625aff715b

Can use now -XX:-UseGraal for benchmark scripts.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 11 Aug 2011 11:44:20 +0200
parents be4ca325525a
children 0e8a2a629afb
comparison
equal deleted inserted replaced
3537:e54641d0d012 3540:85625aff715b
3367 // Notify JVMTI 3367 // Notify JVMTI
3368 if (JvmtiExport::should_post_thread_life()) { 3368 if (JvmtiExport::should_post_thread_life()) {
3369 JvmtiExport::post_thread_start(thread); 3369 JvmtiExport::post_thread_start(thread);
3370 } 3370 }
3371 3371
3372 if (BootstrapGraal) { 3372 if (UseGraal && BootstrapGraal) {
3373 CompileBroker::bootstrap_graal(); 3373 CompileBroker::bootstrap_graal();
3374 } 3374 }
3375 3375
3376 // Check if we should compile all classes on bootclasspath 3376 // Check if we should compile all classes on bootclasspath
3377 NOT_PRODUCT(if (CompileTheWorld) ClassLoader::compile_the_world();) 3377 NOT_PRODUCT(if (CompileTheWorld) ClassLoader::compile_the_world();)