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

/openjdk7/hotspot/src/share/vm/ci/
H A DciMethod.cpp762 int ciMethod::scale_count(int count, float prof_factor) { argument
779 count = (int)((double)count * prof_factor * method_life / counter_life + 0.5);
/openjdk7/hotspot/src/share/vm/opto/
H A DdoCall.cpp67 float prof_factor, bool allow_intrinsics, bool delayed_forbidden) {
96 log->begin_elem("call method='%d' count='%d' prof_factor='%g'",
97 log->identify(callee), site_count, prof_factor);
120 vtable_index, call_does_dispatch, jvms, allow_inline, prof_factor, false);
148 float past_uses = jvms->method()->scale_count(site_count, prof_factor);
160 float site_invoke_ratio = prof_factor;
166 scratch_ci.init(jvms, callee, profile, prof_factor);
192 CallGenerator* cold_cg = call_generator(callee, vtable_index, call_does_dispatch, jvms, false, prof_factor);
213 vtable_index, !call_does_dispatch, jvms, allow_inline, prof_factor);
224 allow_inline, prof_factor);
65 call_generator(ciMethod* callee, int vtable_index, bool call_does_dispatch, JVMState* jvms, bool allow_inline, float prof_factor, bool allow_intrinsics, bool delayed_forbidden) argument
[all...]
H A Dparse.hpp359 float prof_factor() const { return _prof_factor; } function in class:Parse
H A DcallGenerator.cpp1007 void WarmCallInfo::init(JVMState* call_site, ciMethod* call_method, ciCallProfile& profile, float prof_factor) { argument
1012 _count = call_count < 0 ? 1 : call_site->method()->scale_count(call_count, prof_factor);

Completed in 1642 milliseconds