Print this page


Split
Expand all
Collapse all
          --- old/src/share/vm/code/nmethod.cpp
          +++ new/src/share/vm/code/nmethod.cpp
↓ open down ↓ 692 lines elided ↑ open up ↑
 693  693        xtty->begin_head("print_native_nmethod");
 694  694        xtty->method(_method);
 695  695        xtty->stamp();
 696  696        xtty->end_head(" address='" INTPTR_FORMAT "'", (intptr_t) this);
 697  697      }
 698  698      // print the header part first
 699  699      print();
 700  700      // then print the requested information
 701  701      if (PrintNativeNMethods) {
 702  702        print_code();
 703      -      oop_maps->print();
      703 +      if (oop_maps != NULL) {
      704 +        oop_maps->print();
      705 +      }
 704  706      }
 705  707      if (PrintRelocations) {
 706  708        print_relocations();
 707  709      }
 708  710      if (xtty != NULL) {
 709  711        xtty->tail("print_native_nmethod");
 710  712      }
 711  713    }
 712  714  }
 713  715  
↓ open down ↓ 2209 lines elided ↑ open up ↑