Searched refs:prof_factor (Results 1 - 6 of 6) sorted by relevance
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | doCall.cpp | 67 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 D | callGenerator.hpp | 290 void init(JVMState* call_site, ciMethod* call_method, ciCallProfile& profile, float prof_factor);
|
H A D | parse.hpp | 359 float prof_factor() const { return _prof_factor; } function in class:Parse
|
H A D | callGenerator.cpp | 1007 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);
|
/openjdk7/hotspot/src/share/vm/ci/ |
H A D | ciMethod.hpp | 263 int scale_count(int count, float prof_factor = 1.); // make MDO count commensurate with IIC
|
H A D | ciMethod.cpp | 762 int ciMethod::scale_count(int count, float prof_factor) { argument 779 count = (int)((double)count * prof_factor * method_life / counter_life + 0.5);
|
Completed in 233 milliseconds