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

src/share/vm/opto/idealGraphPrinter.hpp

Print this page
rev 9032 : 8137167: JEP165: Compiler Control: Implementation task
Summary: Compiler Control JEP
Reviewed-by: roland, twisti

*** 125,141 **** static void clean_up(); static IdealGraphPrinter *printer(); bool traverse_outs(); void set_traverse_outs(bool b); ! void print_inlining(Compile* compile); ! void begin_method(Compile* compile); void end_method(); ! void print_method(Compile* compile, const char *name, int level=1, bool clear_nodes = false); ! void print(Compile* compile, const char *name, Node *root, int level=1, bool clear_nodes = false); void print_xml(const char *name); ! static bool should_print(ciMethod* method, int level = 1); }; #endif #endif // SHARE_VM_OPTO_IDEALGRAPHPRINTER_HPP --- 125,142 ---- static void clean_up(); static IdealGraphPrinter *printer(); bool traverse_outs(); void set_traverse_outs(bool b); ! void print_inlining(); ! void begin_method(); void end_method(); ! void print_method(const char *name, int level=1, bool clear_nodes = false); ! void print(const char *name, Node *root, int level=1, bool clear_nodes = false); void print_xml(const char *name); ! bool should_print(int level); ! void set_compile(Compile* compile) {C = compile; } }; #endif #endif // SHARE_VM_OPTO_IDEALGRAPHPRINTER_HPP
src/share/vm/opto/idealGraphPrinter.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File