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

src/hotspot/share/oops/method.hpp

Print this page

        

*** 941,958 **** // Indicates whether compilation failed earlier for this method, or // whether it is not compilable for another reason like having a // breakpoint set in it. bool is_not_compilable(int comp_level = CompLevel_any) const; ! void set_not_compilable(int comp_level = CompLevel_all, bool report = true, const char* reason = NULL); ! void set_not_compilable_quietly(int comp_level = CompLevel_all) { ! set_not_compilable(comp_level, false); } bool is_not_osr_compilable(int comp_level = CompLevel_any) const; ! void set_not_osr_compilable(int comp_level = CompLevel_all, bool report = true, const char* reason = NULL); ! void set_not_osr_compilable_quietly(int comp_level = CompLevel_all) { ! set_not_osr_compilable(comp_level, false); } bool is_always_compilable() const; private: void print_made_not_compilable(int comp_level, bool is_osr, bool report, const char* reason); --- 941,958 ---- // Indicates whether compilation failed earlier for this method, or // whether it is not compilable for another reason like having a // breakpoint set in it. bool is_not_compilable(int comp_level = CompLevel_any) const; ! void set_not_compilable(const char* reason, int comp_level = CompLevel_all, bool report = true); ! void set_not_compilable_quietly(const char* reason, int comp_level = CompLevel_all) { ! set_not_compilable(reason, comp_level, false); } bool is_not_osr_compilable(int comp_level = CompLevel_any) const; ! void set_not_osr_compilable(const char* reason, int comp_level = CompLevel_all, bool report = true); ! void set_not_osr_compilable_quietly(const char* reason, int comp_level = CompLevel_all) { ! set_not_osr_compilable(reason, comp_level, false); } bool is_always_compilable() const; private: void print_made_not_compilable(int comp_level, bool is_osr, bool report, const char* reason);
src/hotspot/share/oops/method.hpp
Index Unified diffs Context diffs Sdiffs Frames Patch New Old Previous File Next File