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

src/share/vm/ci/ciMethod.hpp

Print this page
rev 7387 : 8063137: Never-taken branches should be pruned when GWT LambdaForms are shared
Reviewed-by: ?

*** 178,187 **** --- 178,188 ---- int code_size_for_inlining(); bool caller_sensitive() { return get_Method()->caller_sensitive(); } bool force_inline() { return get_Method()->force_inline(); } bool dont_inline() { return get_Method()->dont_inline(); } + bool ignore_profile() { return get_Method()->ignore_profile(); } int comp_level(); int highest_osr_comp_level(); Bytecodes::Code java_code_at_bci(int bci) {
src/share/vm/ci/ciMethod.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File