hotspot/src/share/vm/runtime/frame.cpp
changeset 42040 70ec5a09a0d5
parent 40332 a52d1e719c4d
child 42569 fccb65782775
equal deleted inserted replaced
42039:db627462f2c9 42040:70ec5a09a0d5
   684       Method* m = cm->method();
   684       Method* m = cm->method();
   685       if (m != NULL) {
   685       if (m != NULL) {
   686         if (cm->is_nmethod()) {
   686         if (cm->is_nmethod()) {
   687           nmethod* nm = cm->as_nmethod();
   687           nmethod* nm = cm->as_nmethod();
   688           st->print("J %d%s", nm->compile_id(), (nm->is_osr_method() ? "%" : ""));
   688           st->print("J %d%s", nm->compile_id(), (nm->is_osr_method() ? "%" : ""));
   689           if (nm->compiler() != NULL) {
   689           st->print(" %s", nm->compiler_name());
   690             st->print(" %s", nm->compiler()->name());
       
   691           }
       
   692         }
   690         }
   693         m->name_and_sig_as_C_string(buf, buflen);
   691         m->name_and_sig_as_C_string(buf, buflen);
   694         st->print(" %s", buf);
   692         st->print(" %s", buf);
   695         ModuleEntry* module = m->method_holder()->module();
   693         ModuleEntry* module = m->method_holder()->module();
   696         if (module->is_named()) {
   694         if (module->is_named()) {