comparison src/share/vm/code/nmethod.cpp @ 8155:3c29f7da5c66

More C++ fixes. Revert alignment change of _number_of_committed_segments.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 07 Mar 2013 21:33:03 +0100
parents 2bc6f232f74e
children c5ff08c22458
comparison
equal deleted inserted replaced
8154:a2a67458a7b6 8155:3c29f7da5c66
519 nm = new (native_nmethod_size) 519 nm = new (native_nmethod_size)
520 nmethod(method(), native_nmethod_size, compile_id, &offsets, 520 nmethod(method(), native_nmethod_size, compile_id, &offsets,
521 code_buffer, frame_size, 521 code_buffer, frame_size,
522 basic_lock_owner_sp_offset, basic_lock_sp_offset, 522 basic_lock_owner_sp_offset, basic_lock_sp_offset,
523 oop_maps); 523 oop_maps);
524 if (nm != NULL) nmethod_stats.note_native_nmethod(nm); 524 NOT_PRODUCT(if (nm != NULL) nmethod_stats.note_native_nmethod(nm));
525 if (PrintAssembly && nm != NULL) 525 if (PrintAssembly && nm != NULL)
526 Disassembler::decode(nm); 526 Disassembler::decode(nm);
527 } 527 }
528 // verify nmethod 528 // verify nmethod
529 debug_only(if (nm) nm->verify();) // might block 529 debug_only(if (nm) nm->verify();) // might block