hotspot/src/share/vm/jvmci/jvmciCompiler.cpp
changeset 38218 f5ba1dea04eb
parent 37248 11a660dbbb8e
child 38666 5ff19807abd5
equal deleted inserted replaced
38217:7ecc47b7df3d 38218:f5ba1dea04eb
    83   for (int i = 0; i < len; i++) {
    83   for (int i = 0; i < len; i++) {
    84     methodHandle mh = objectMethods->at(i);
    84     methodHandle mh = objectMethods->at(i);
    85     if (!mh->is_native() && !mh->is_static() && !mh->is_initializer()) {
    85     if (!mh->is_native() && !mh->is_static() && !mh->is_initializer()) {
    86       ResourceMark rm;
    86       ResourceMark rm;
    87       int hot_count = 10; // TODO: what's the appropriate value?
    87       int hot_count = 10; // TODO: what's the appropriate value?
    88       CompileBroker::compile_method(mh, InvocationEntryBci, CompLevel_full_optimization, mh, hot_count, "bootstrap", THREAD);
    88       CompileBroker::compile_method(mh, InvocationEntryBci, CompLevel_full_optimization, mh, hot_count, CompileTask::Reason_Bootstrap, THREAD);
    89     }
    89     }
    90   }
    90   }
    91 
    91 
    92   int qsize;
    92   int qsize;
    93   bool first_round = true;
    93   bool first_round = true;