hotspot/src/share/vm/code/codeCache.cpp
changeset 31592 43f48e165466
parent 31041 7d59fa6a48f1
child 31620 53be635ad49c
equal deleted inserted replaced
31401:1514c0a798d2 31592:43f48e165466
  1395   NMethodIterator iter;
  1395   NMethodIterator iter;
  1396   while(iter.next_alive()) {
  1396   while(iter.next_alive()) {
  1397     nmethod* nm = iter.method();
  1397     nmethod* nm = iter.method();
  1398     ResourceMark rm;
  1398     ResourceMark rm;
  1399     char *method_name = nm->method()->name_and_sig_as_C_string();
  1399     char *method_name = nm->method()->name_and_sig_as_C_string();
  1400     st->print_cr("%d %d %s ["INTPTR_FORMAT", "INTPTR_FORMAT" - "INTPTR_FORMAT"]",
  1400     st->print_cr("%d %d %s [" INTPTR_FORMAT ", " INTPTR_FORMAT " - " INTPTR_FORMAT "]",
  1401                  nm->compile_id(), nm->comp_level(), method_name, (intptr_t)nm->header_begin(),
  1401                  nm->compile_id(), nm->comp_level(), method_name, (intptr_t)nm->header_begin(),
  1402                  (intptr_t)nm->code_begin(), (intptr_t)nm->code_end());
  1402                  (intptr_t)nm->code_begin(), (intptr_t)nm->code_end());
  1403   }
  1403   }
  1404 }
  1404 }
  1405 
  1405