< prev index next >

src/share/vm/code/nmethod.cpp

Print this page
rev 7988 : imported patch runtime_call.desc
rev 7989 : imported patch print_adapters

*** 502,512 **** compile_id, &offsets, code_buffer, frame_size, basic_lock_owner_sp_offset, basic_lock_sp_offset, oop_maps); NOT_PRODUCT(if (nm != NULL) nmethod_stats.note_native_nmethod(nm)); ! if (PrintAssembly && nm != NULL) { Disassembler::decode(nm); } } // verify nmethod debug_only(if (nm) nm->verify();) // might block --- 502,512 ---- compile_id, &offsets, code_buffer, frame_size, basic_lock_owner_sp_offset, basic_lock_sp_offset, oop_maps); NOT_PRODUCT(if (nm != NULL) nmethod_stats.note_native_nmethod(nm)); ! if ((PrintAssembly || CompilerOracle::should_print(method)) && nm != NULL) { Disassembler::decode(nm); } } // verify nmethod debug_only(if (nm) nm->verify();) // might block
< prev index next >