src/hotspot/share/oops/method.cpp
changeset 55686 b8152c273f76
parent 55635 0fb70c9118ce
child 55749 cff8aad2593f
equal deleted inserted replaced
55685:56b96d234f26 55686:b8152c273f76
   840     ttyLocker ttyl;
   840     ttyLocker ttyl;
   841     tty->print("made not %scompilable on ", is_osr ? "OSR " : "");
   841     tty->print("made not %scompilable on ", is_osr ? "OSR " : "");
   842     if (comp_level == CompLevel_all) {
   842     if (comp_level == CompLevel_all) {
   843       tty->print("all levels ");
   843       tty->print("all levels ");
   844     } else {
   844     } else {
   845       tty->print("levels ");
   845       tty->print("level %d ", comp_level);
   846       for (int i = (int)CompLevel_none; i <= comp_level; i++) {
       
   847         tty->print("%d ", i);
       
   848       }
       
   849     }
   846     }
   850     this->print_short_name(tty);
   847     this->print_short_name(tty);
   851     int size = this->code_size();
   848     int size = this->code_size();
   852     if (size > 0) {
   849     if (size > 0) {
   853       tty->print(" (%d bytes)", size);
   850       tty->print(" (%d bytes)", size);