hotspot/src/share/vm/compiler/compileBroker.cpp
changeset 34185 ee71c590a456
parent 33626 3c94db05e903
parent 34165 66826441022f
child 34191 8287a25df277
equal deleted inserted replaced
33813:4f376e851453 34185:ee71c590a456
  1714 
  1714 
  1715     TraceTime t1("compilation", &time);
  1715     TraceTime t1("compilation", &time);
  1716     EventCompilation event;
  1716     EventCompilation event;
  1717 
  1717 
  1718     JVMCIEnv env(task, system_dictionary_modification_counter);
  1718     JVMCIEnv env(task, system_dictionary_modification_counter);
  1719     jvmci->compile_method(target_handle, osr_bci, &env);
  1719     methodHandle method(thread, target_handle);
       
  1720     jvmci->compile_method(method, osr_bci, &env);
  1720 
  1721 
  1721     post_compile(thread, task, event, task->code() != NULL, NULL);
  1722     post_compile(thread, task, event, task->code() != NULL, NULL);
  1722   } else
  1723   } else
  1723 #endif // INCLUDE_JVMCI
  1724 #endif // INCLUDE_JVMCI
  1724   {
  1725   {