src/share/vm/runtime/simpleThresholdPolicy.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File inlinee-invoke-notifications Cdiff src/share/vm/runtime/simpleThresholdPolicy.hpp

src/share/vm/runtime/simpleThresholdPolicy.hpp

Print this page

        

*** 53,63 **** // level with a regular invocation entry. CompLevel call_event(methodOop method, CompLevel cur_level); // loop_event checks if a method should be OSR compiled at a different // level. CompLevel loop_event(methodOop method, CompLevel cur_level); ! protected: int c1_count() const { return _c1_count; } int c2_count() const { return _c2_count; } void set_c1_count(int x) { _c1_count = x; } void set_c2_count(int x) { _c2_count = x; } --- 53,63 ---- // level with a regular invocation entry. CompLevel call_event(methodOop method, CompLevel cur_level); // loop_event checks if a method should be OSR compiled at a different // level. CompLevel loop_event(methodOop method, CompLevel cur_level); ! void print_counters(const char* prefix, methodHandle mh); protected: int c1_count() const { return _c1_count; } int c2_count() const { return _c2_count; } void set_c1_count(int x) { _c1_count = x; } void set_c2_count(int x) { _c2_count = x; }
src/share/vm/runtime/simpleThresholdPolicy.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File