src/share/vm/runtime/sharedRuntime.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/runtime/sharedRuntime.cpp	Wed Oct  7 12:14:53 2015
--- new/src/share/vm/runtime/sharedRuntime.cpp	Wed Oct  7 12:14:53 2015

*** 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* directive = DirectivesStack::getMatchingDirective(method, CompileBroker::compiler(CompLevel_simple)); + if (directive->PrintAssemblyOption) { + Disassembler::decode(nm, tty); + } + DirectivesStack::release(directive); } } } // Unlock AdapterHandlerLibrary_lock

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