< prev index next >

src/hotspot/share/jvmci/jvmciCompiler.cpp

Print this page
*** 88,11 ***
    for (int i = 0; i < len; i++) {
      methodHandle mh(THREAD, objectMethods->at(i));
      if (!mh->is_native() && !mh->is_static() && !mh->is_initializer()) {
        ResourceMark rm;
        int hot_count = 10; // TODO: what's the appropriate value?
!       CompileBroker::compile_method(mh, InvocationEntryBci, CompLevel_full_optimization, mh, hot_count, CompileTask::Reason_Bootstrap, CHECK);
      }
    }
  
    int qsize;
    bool first_round = true;
--- 88,11 ---
    for (int i = 0; i < len; i++) {
      methodHandle mh(THREAD, objectMethods->at(i));
      if (!mh->is_native() && !mh->is_static() && !mh->is_initializer()) {
        ResourceMark rm;
        int hot_count = 10; // TODO: what's the appropriate value?
!       CompileBroker::compile_method(mh, InvocationEntryBci, CompLevel_full_optimization, mh, hot_count, false, CompileTask::Reason_Bootstrap, CHECK);
      }
    }
  
    int qsize;
    bool first_round = true;
< prev index next >