Searched defs:hot_count (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A DsimpleThresholdPolicy.cpp244 int hot_count = (bci == InvocationEntryBci) ? mh->invocation_count() : mh->backedge_count(); local
245 CompileBroker::compile_method(mh, bci, level, mh, hot_count, "tiered", thread);
H A DadvancedThresholdPolicy.cpp427 int hot_count = (bci == InvocationEntryBci) ? mh->invocation_count() : mh->backedge_count(); local
429 CompileBroker::compile_method(mh, bci, level, mh, hot_count, "tiered", thread);
H A DcompilationPolicy.cpp398 const int hot_count = m->invocation_count(); local
405 CompileBroker::compile_method(m, InvocationEntryBci, comp_level, m, hot_count, comment, thread);
412 const int hot_count = m->backedge_count(); local
416 CompileBroker::compile_method(m, bci, comp_level, m, hot_count, comment, thread);
429 const int hot_count = m->invocation_count(); local
461 m, hot_count, comment, thread);
468 const int hot_count = m->backedge_count(); local
472 CompileBroker::compile_method(m, bci, comp_level, m, hot_count, comment, thread);
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.cpp271 int hot_count,
288 _hot_count = hot_count;
545 xtty->print(" hot_count='%d'", _hot_count);
1022 int hot_count,
1043 tty->print(" comment: %s count: %d", comment, hot_count);
1170 hot_method, hot_count, comment,
1182 methodHandle hot_method, int hot_count,
1294 compile_method_base(method, osr_bci, comp_level, hot_method, hot_count, comment, THREAD);
1446 int hot_count,
1451 hot_method, hot_count, commen
266 initialize(int compile_id, methodHandle method, int osr_bci, int comp_level, methodHandle hot_method, int hot_count, const char* comment, bool is_blocking) argument
1018 compile_method_base(methodHandle method, int osr_bci, int comp_level, methodHandle hot_method, int hot_count, const char* comment, Thread* thread) argument
1180 compile_method(methodHandle method, int osr_bci, int comp_level, methodHandle hot_method, int hot_count, const char* comment, Thread* THREAD) argument
1440 create_compile_task(CompileQueue* queue, int compile_id, methodHandle method, int osr_bci, int comp_level, methodHandle hot_method, int hot_count, const char* comment, bool blocking) argument
[all...]

Completed in 46 milliseconds