hotspot/src/share/vm/opto/loopnode.cpp
changeset 32730 494d1a576a61
parent 32372 b82e88dcb26c
child 33628 09241459a8b8
equal deleted inserted replaced
32727:320855c2baef 32730:494d1a576a61
  1899       tty->print("int),");
  1899       tty->print("int),");
  1900     int stride_con  = cl->stride_con();
  1900     int stride_con  = cl->stride_con();
  1901     if (stride_con > 0) tty->print("+");
  1901     if (stride_con > 0) tty->print("+");
  1902     tty->print("%d", stride_con);
  1902     tty->print("%d", stride_con);
  1903 
  1903 
  1904     tty->print(" (%d iters) ", (int)cl->profile_trip_cnt());
  1904     tty->print(" (%0.f iters) ", cl->profile_trip_cnt());
  1905 
  1905 
  1906     if (cl->is_pre_loop ()) tty->print(" pre" );
  1906     if (cl->is_pre_loop ()) tty->print(" pre" );
  1907     if (cl->is_main_loop()) tty->print(" main");
  1907     if (cl->is_main_loop()) tty->print(" main");
  1908     if (cl->is_post_loop()) tty->print(" post");
  1908     if (cl->is_post_loop()) tty->print(" post");
  1909   }
  1909   }