comparison src/share/vm/code/nmethod.cpp @ 19728:f3eed864acdc

Support printing options for more nmethod parts
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Mon, 09 Mar 2015 12:18:19 -0700
parents dcfdd60edaf1
children f8147c931ce4
comparison
equal deleted inserted replaced
19727:72a3e3995879 19728:f3eed864acdc
1103 print_pcs(); 1103 print_pcs();
1104 if (oop_maps()) { 1104 if (oop_maps()) {
1105 oop_maps()->print(); 1105 oop_maps()->print();
1106 } 1106 }
1107 } 1107 }
1108 if (PrintDebugInfo) { 1108 if (PrintDebugInfo || CompilerOracle::has_option_string(_method, "PrintDebugInfo")) {
1109 print_scopes(); 1109 print_scopes();
1110 } 1110 }
1111 if (PrintRelocations) { 1111 if (PrintRelocations || CompilerOracle::has_option_string(_method, "PrintRelocations")) {
1112 print_relocations(); 1112 print_relocations();
1113 } 1113 }
1114 if (PrintDependencies) { 1114 if (PrintDependencies || CompilerOracle::has_option_string(_method, "PrintDependencies")) {
1115 print_dependencies(); 1115 print_dependencies();
1116 } 1116 }
1117 if (PrintExceptionHandlers) { 1117 if (PrintExceptionHandlers) {
1118 print_handler_table(); 1118 print_handler_table();
1119 print_nul_chk_table(); 1119 print_nul_chk_table();