src/share/vm/jvmci/jvmciCompiler.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/jvmci/jvmciCompiler.cpp

src/share/vm/jvmci/jvmciCompiler.cpp

Print this page
rev 10291 : 8150646: Add support for blocking compiles though whitebox API
Summary: Better testing
Reviewed-by:

*** 82,92 **** for (int i = 0; i < len; i++) { methodHandle mh = 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, "bootstrap", THREAD); } } int qsize; bool first_round = true; --- 82,92 ---- for (int i = 0; i < len; i++) { methodHandle mh = 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, "bootstrap", false, THREAD); } } int qsize; bool first_round = true;
src/share/vm/jvmci/jvmciCompiler.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File