< prev index next >

src/hotspot/share/code/pcDesc.hpp

Print this page
rev 54763 : 8213084: Rework and enhance Print[Opto]Assembly output
Reviewed-by:

*** 90,99 **** void set_return_oop(bool z) { set_flag(PCDESC_return_oop, z); } // Returns the real pc address real_pc(const CompiledMethod* code) const; ! void print(CompiledMethod* code); bool verify(CompiledMethod* code); }; #endif // SHARE_CODE_PCDESC_HPP --- 90,100 ---- void set_return_oop(bool z) { set_flag(PCDESC_return_oop, z); } // Returns the real pc address real_pc(const CompiledMethod* code) const; ! void print(CompiledMethod* code) { print_on(tty, code); } ! void print_on(outputStream* st, CompiledMethod* code); bool verify(CompiledMethod* code); }; #endif // SHARE_CODE_PCDESC_HPP
< prev index next >