src/share/vm/ci/ciMethod.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/ci/ciMethod.hpp	Tue May  6 15:13:00 2014
--- new/src/share/vm/ci/ciMethod.hpp	Tue May  6 15:13:00 2014

*** 66,75 **** --- 66,76 ---- int _code_size; int _max_stack; int _max_locals; vmIntrinsics::ID _intrinsic_id; int _handler_count; + int _nmethod_age; int _interpreter_invocation_count; int _interpreter_throwout_count; int _instructions_size; int _size_of_parameters;
*** 166,175 **** --- 167,178 ---- bool has_exception_handlers() const { check_is_loaded(); return _handler_count > 0; } int exception_table_length() const { check_is_loaded(); return _handler_count; } int interpreter_invocation_count() const { check_is_loaded(); return _interpreter_invocation_count; } int interpreter_throwout_count() const { check_is_loaded(); return _interpreter_throwout_count; } int size_of_parameters() const { check_is_loaded(); return _size_of_parameters; } + int nmethod_age() const { check_is_loaded(); return _nmethod_age; } + // Code size for inlining decisions. int code_size_for_inlining(); bool caller_sensitive() { return get_Method()->caller_sensitive(); }

src/share/vm/ci/ciMethod.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File