src/share/vm/compiler/compileBroker.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8048721 Cdiff src/share/vm/compiler/compileBroker.hpp

src/share/vm/compiler/compileBroker.hpp

Print this page

        

*** 107,125 **** bool is_free() const { return _is_free; } void set_is_free(bool val) { _is_free = val; } private: static void print_compilation_impl(outputStream* st, Method* method, int compile_id, int comp_level, ! bool is_osr_method = false, int osr_bci = -1, bool is_blocking = false, const char* msg = NULL, bool short_form = false); public: void print_compilation(outputStream* st = tty, const char* msg = NULL, bool short_form = false); static void print_compilation(outputStream* st, const nmethod* nm, const char* msg = NULL, bool short_form = false) { ! print_compilation_impl(st, nm->method(), nm->compile_id(), nm->comp_level(), ! nm->is_osr_method(), nm->is_osr_method() ? nm->osr_entry_bci() : -1, /*is_blocking*/ false, ! msg, short_form); } static void print_inlining(outputStream* st, ciMethod* method, int inline_level, int bci, const char* msg = NULL); static void print_inlining(ciMethod* method, int inline_level, int bci, const char* msg = NULL) { print_inlining(tty, method, inline_level, bci, msg); --- 107,127 ---- bool is_free() const { return _is_free; } void set_is_free(bool val) { _is_free = val; } private: static void print_compilation_impl(outputStream* st, Method* method, int compile_id, int comp_level, ! bool is_osr_method = false, int osr_bci = InvocationEntryBci, bool is_blocking = false, const char* msg = NULL, bool short_form = false); public: void print_compilation(outputStream* st = tty, const char* msg = NULL, bool short_form = false); static void print_compilation(outputStream* st, const nmethod* nm, const char* msg = NULL, bool short_form = false) { ! print_compilation(st, nm, nm->is_osr_method() ? nm->osr_entry_bci() : InvocationEntryBci, msg, short_form); ! } ! static void print_compilation(outputStream* st, const nmethod* nm, int osr_bci, const char* msg = NULL, bool short_form = false) { ! print_compilation_impl(st, nm->method(), nm->compile_id(), nm->comp_level(), nm->is_osr_method(), ! osr_bci, /*is_blocking*/ false, msg, short_form); } static void print_inlining(outputStream* st, ciMethod* method, int inline_level, int bci, const char* msg = NULL); static void print_inlining(ciMethod* method, int inline_level, int bci, const char* msg = NULL) { print_inlining(tty, method, inline_level, bci, msg);
src/share/vm/compiler/compileBroker.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File