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 Jan 27 18:24:59 2015
--- new/src/share/vm/ci/ciMethod.hpp	Tue Jan 27 18:24:59 2015

*** 77,86 **** --- 77,87 ---- bool _uses_monitors; bool _balanced_monitors; bool _is_c1_compilable; bool _is_c2_compilable; bool _can_be_statically_bound; + bool _has_injected_profile; // Lazy fields, filled in on demand address _code; ciExceptionHandler** _exception_handlers;
*** 284,293 **** --- 285,297 ---- bool ensure_method_data(); // make sure it exists in the VM also MethodCounters* ensure_method_counters(); int instructions_size(); int scale_count(int count, float prof_factor = 1.); // make MDO count commensurate with IIC + bool has_injected_profile() const { return _has_injected_profile; } + void set_injected_profile(bool x) { _has_injected_profile = x; } + // Stack walking support bool is_ignored_by_security_stack_walk() const; // JSR 292 support bool is_method_handle_intrinsic() const;

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