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

src/share/vm/opto/parse2.cpp

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

*** 2376,2391 **** tty->print("\nUnhandled bytecode %s\n", Bytecodes::name(bc()) ); ShouldNotReachHere(); } #ifndef PRODUCT ! IdealGraphPrinter *printer = IdealGraphPrinter::printer(); ! if (printer && printer->should_print(_method)) { char buffer[256]; sprintf(buffer, "Bytecode %d: %s", bci(), Bytecodes::name(bc())); bool old = printer->traverse_outs(); printer->set_traverse_outs(true); ! printer->print_method(C, buffer, 4); printer->set_traverse_outs(old); } #endif } --- 2376,2391 ---- tty->print("\nUnhandled bytecode %s\n", Bytecodes::name(bc()) ); ShouldNotReachHere(); } #ifndef PRODUCT ! IdealGraphPrinter *printer = C->printer(); ! if (printer && printer->should_print(1)) { char buffer[256]; sprintf(buffer, "Bytecode %d: %s", bci(), Bytecodes::name(bc())); bool old = printer->traverse_outs(); printer->set_traverse_outs(true); ! printer->print_method(buffer, 4); printer->set_traverse_outs(old); } #endif }
src/share/vm/opto/parse2.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File