comparison src/share/vm/code/nmethod.cpp @ 2212:d9e4d0aefc90

Small clean up to reduce delta to OpenJDK.
author Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
date Mon, 21 Feb 2011 19:28:35 +0100
parents 0cd39a385a72
children 1cfdec4e7f07
comparison
equal deleted inserted replaced
2211:0cd39a385a72 2212:d9e4d0aefc90
2590 2590
2591 void nmethod::print_nmethod_labels(outputStream* stream, address block_begin) { 2591 void nmethod::print_nmethod_labels(outputStream* stream, address block_begin) {
2592 if (block_begin == entry_point()) stream->print_cr("[Entry Point]"); 2592 if (block_begin == entry_point()) stream->print_cr("[Entry Point]");
2593 if (block_begin == verified_entry_point()) stream->print_cr("[Verified Entry Point]"); 2593 if (block_begin == verified_entry_point()) stream->print_cr("[Verified Entry Point]");
2594 if (block_begin == exception_begin()) stream->print_cr("[Exception Handler]"); 2594 if (block_begin == exception_begin()) stream->print_cr("[Exception Handler]");
2595 if (block_begin == unwind_handler_begin()) stream->print_cr("[Unwind Handler]");
2596 if (block_begin == stub_begin()) stream->print_cr("[Stub Code]"); 2595 if (block_begin == stub_begin()) stream->print_cr("[Stub Code]");
2597 if (block_begin == deopt_handler_begin()) stream->print_cr("[Deopt Handler Code]"); 2596 if (block_begin == deopt_handler_begin()) stream->print_cr("[Deopt Handler Code]");
2598 2597
2599 if (has_method_handle_invokes()) 2598 if (has_method_handle_invokes())
2600 if (block_begin == deopt_mh_handler_begin()) stream->print_cr("[Deopt MH Handler Code]"); 2599 if (block_begin == deopt_mh_handler_begin()) stream->print_cr("[Deopt MH Handler Code]");