comparison src/share/vm/runtime/thread.cpp @ 22758:a130b51efb07

removed @Option mechanism from JVMCI (GRAAL-1371)
author Doug Simon <doug.simon@oracle.com>
date Mon, 21 Dec 2015 15:53:56 +0100
parents 3039e5bb94cb
children dd9cc155639c
comparison
equal deleted inserted replaced
22757:f4c4cc22a31c 22758:a130b51efb07
3704 #if INCLUDE_JVMCI 3704 #if INCLUDE_JVMCI
3705 const char* jvmciCompiler = Arguments::PropertyList_get_value(Arguments::system_properties(), "jvmci.compiler"); 3705 const char* jvmciCompiler = Arguments::PropertyList_get_value(Arguments::system_properties(), "jvmci.compiler");
3706 if (jvmciCompiler != NULL) { 3706 if (jvmciCompiler != NULL) {
3707 JVMCIRuntime::save_compiler(jvmciCompiler); 3707 JVMCIRuntime::save_compiler(jvmciCompiler);
3708 } 3708 }
3709 JVMCIRuntime::maybe_print_flags(THREAD);
3710 if (HAS_PENDING_EXCEPTION) {
3711 vm_exit_during_initialization(Handle(THREAD, PENDING_EXCEPTION));
3712 }
3713 #endif 3709 #endif
3714 3710
3715 // initialize compiler(s) 3711 // initialize compiler(s)
3716 #if defined(COMPILER1) || defined(COMPILER2) || defined(SHARK) || defined(COMPILERJVMCI) 3712 #if defined(COMPILER1) || defined(COMPILER2) || defined(SHARK) || defined(COMPILERJVMCI)
3717 CompileBroker::compilation_init(); 3713 CompileBroker::compilation_init();