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

src/share/vm/oops/method.hpp

Print this page

        

*** 811,822 **** // On-stack replacement support bool has_osr_nmethod(int level, bool match_level) { return method_holder()->lookup_osr_nmethod(this, InvocationEntryBci, level, match_level) != NULL; } ! nmethod* lookup_osr_nmethod_for(int bci, int level, bool match_level) { ! return method_holder()->lookup_osr_nmethod(this, bci, level, match_level); } // Inline cache support void cleanup_inline_caches(); --- 811,822 ---- // On-stack replacement support bool has_osr_nmethod(int level, bool match_level) { return method_holder()->lookup_osr_nmethod(this, InvocationEntryBci, level, match_level) != NULL; } ! nmethod* lookup_osr_nmethod_for(int bci, int level, bool match_level, bool skip_marked = false) { ! return method_holder()->lookup_osr_nmethod(this, bci, level, match_level, skip_marked); } // Inline cache support void cleanup_inline_caches();
src/share/vm/oops/method.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File