mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +02:00
Merge
This commit is contained in:
commit
fbd1f6e3be
138 changed files with 5462 additions and 4473 deletions
|
@ -463,6 +463,7 @@ void nmethod::init_defaults() {
|
|||
_has_unsafe_access = 0;
|
||||
_has_method_handle_invokes = 0;
|
||||
_lazy_critical_native = 0;
|
||||
_has_wide_vectors = 0;
|
||||
_marked_for_deoptimization = 0;
|
||||
_lock_count = 0;
|
||||
_stack_traversal_mark = 0;
|
||||
|
@ -700,7 +701,9 @@ nmethod::nmethod(
|
|||
// then print the requested information
|
||||
if (PrintNativeNMethods) {
|
||||
print_code();
|
||||
oop_maps->print();
|
||||
if (oop_maps != NULL) {
|
||||
oop_maps->print();
|
||||
}
|
||||
}
|
||||
if (PrintRelocations) {
|
||||
print_relocations();
|
||||
|
@ -2666,7 +2669,7 @@ ScopeDesc* nmethod::scope_desc_in(address begin, address end) {
|
|||
return NULL;
|
||||
}
|
||||
|
||||
void nmethod::print_nmethod_labels(outputStream* stream, address block_begin) {
|
||||
void nmethod::print_nmethod_labels(outputStream* stream, address block_begin) const {
|
||||
if (block_begin == entry_point()) stream->print_cr("[Entry Point]");
|
||||
if (block_begin == verified_entry_point()) stream->print_cr("[Verified Entry Point]");
|
||||
if (block_begin == exception_begin()) stream->print_cr("[Exception Handler]");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue