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

src/share/vm/runtime/sharedRuntime.cpp

Print this page
rev 9003 : 8137167: JEP165: Compiler Control: Implementation task
Summary:
Reviewed-by:

*** 2610,2619 **** --- 2610,2625 ---- // Generate the compiled-to-native wrapper code nm = SharedRuntime::generate_native_wrapper(&_masm, method, compile_id, sig_bt, regs, ret_type); if (nm != NULL) { method->set_code(method, nm); + + DirectiveSet* dirset = DirectivesStack::getMatchingDirective(method, CompileBroker::compiler(CompLevel_simple)); + if (dirset->PrintAssemblyOption) { + Disassembler::decode(nm, tty); + } + DirectivesStack::release(dirset); } } } // Unlock AdapterHandlerLibrary_lock
src/share/vm/runtime/sharedRuntime.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File